django-userswitch

A quick 'n' dirty django app for switching between different users while testing
Download

django-userswitch Ranking & Summary

Advertisement

  • Rating:
  • License:
  • BSD License
  • Publisher Name:
  • iKraft Software LTD.

django-userswitch Tags


django-userswitch Description

A quick 'n' dirty django app for switching between different users while testing django-userswitch is a quick 'n' dirty Django app for switching between different users while testing. * "Quick and dirty". Just include the middleware and urls. That's it! * Provides a select box with a list of users. * User list can be defined in settings or all users are loaded. * Works only when settings.DEBUG is TrueInstallation:To install the latest version:pip install git+git://github.com/ikraftsoft/django-userswitch#egg=django-userswitchIt can also be installed from PyPI with pip or easy_install:pip install django-userswitcheasy_install install django-userswitchSetup & UsageAdd userswitch middleware to the MIDDLEWARE_CLASSES in settings.py after the default middlewares:MIDDLEWARE_CLASSES = ( 'django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', ... 'userswitch.middleware.UserSwitchMiddleware',)Add the following line to your root url.py:from django.conf import settings....if settings.DEBUG: urlpatterns += pattern('', (r'^userswitch/', include('userswitch.urls')) )Optionally you can add USERSWITCH_OPTIONS dict to the settings.py:USERSWITCH_OPTIONS = { 'css_class': '', # CSS class to be added to the switcher widget. Default='userswitch'. 'css_inline': '', # Inline css for the switcher widget, if any 'content_types': (), # a tuple of content-type for which to render switcher widget. Default = ('text/html', 'application/xhtml+xml') 'auth_backend': '', # Custom auth backend if any. Default = 'django.contrib.auth.backends.ModelBackend' 'users': (), # List of usernames(as strings) to be shown in the switcher widget. If its empty, all users are loaded.}Note: default value of css_inline option provides some basic absolute positioning. To change those either specify css_inline option manually or override position, top, right in the class specified in css_class with !important. Requirements: · Django · Python


django-userswitch Related Software