Django app that allows administrators to log in to user accounts without having to provide a password
Project description
django-assume
Django Assume is a simple, reusable Django app that allows administrators to log in to other user accounts without having to provide a password. This can be useful for investigating and troubleshooting problems related to specific user accounts.
This app is intended for use with Django 1.3 and later.
Suggestions and contributions are welcome. USE THIS APP AT YOUR OWN RISK!
Installation
Add assume to settings.INSTALLED_APPS and make sure that the app_directories template loader is enabled in your project:
INSTALLED_APPS = ( # ... 'assume', )
Add one of the custom authentication backends in assume.backends to settings.AUTHENTICATION_BACKENDS. For example:
AUTHENTICATION_BACKENDS = ( 'assume.backends.AssumableModelBackend', 'django.contrib.auth.backends.ModelBackend', )
Include assume.admin_urls in your project’s URL patterns:
urlpatterns += patterns('', (r'^admin/', include('assume.admin_urls')), )
You should now see an “Assume” button near the top of each Change User form in admin.
Options
To specify the next URL to be redirected to after a user has been assumed, use the following setting:
URL_AFTER_ASSUME = '/next/url/'
Alternately, specify a custom URL pattern and pass a next_url parameter to the assume_user view:
urlpatterns += patterns('', url(r'^admin/auth/user/(\d+)/assume/$', 'assume.views.assume_user', { 'next_url': '/demo/' }, name='assume_user'), )
By default, staff members cannot be assumed. This can be changed using the following setting:
CAN_ASSUME_STAFF = True
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-assume-0.2.1.tar.gz
.
File metadata
- Download URL: django-assume-0.2.1.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b11f26cea6c1c07c17123a7b832d3883d3f12390bfdd37acf48522041b1b4b8 |
|
MD5 | 82953a051747de01b9a3966870f92524 |
|
BLAKE2b-256 | 255f2f1c6eee2fd8ce1797ca43789435ad8e584b4b87e74511dffa4fd5e13c45 |