GitXplorerGitXplorer
e

django-switch-user

public
1 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
b3c32362402a159838707f4b2e45159ef40fa3cd

Upgrade for Django 4.2

eempty committed a year ago
Unverified
3731d002e3ee3ede26517cbe75da4c51cd295fc7

Bug

eempty committed 4 years ago
Unverified
36eaad954c69bb2a1326efd25ec21e7f935e68ed

Bump version

eempty committed 4 years ago
Unverified
9f14d67d19d672084cc76d8a02b53570de155af9

Forgot to rename the readme

eempty committed 4 years ago
Unverified
8e7bacdab90fd9550abe15729fc498e99feb28f5

More clarification in readme

eempty committed 4 years ago
Unverified
0d87403627140eb2f1d1090a60a0b03738554d34

Make a note about versions and Python 3

eempty committed 4 years ago

README

The README file for this repository.

django-switch-user

Django Switch User is a reuasable application that allows users to assume the identify of another user. It can be helpful when debugging user issues. Django Switch User assumes you are using a Django model backend for your user.

Beginning with the django-switch-user 2.0 version and above are only supported on Python 3. If you need a Python 2 compatible version use version 1.3.0

Installation

pip install django-switch-user

Quickstart

After installing Django Switch User you just need to add su to INSTALLED_APPS and wire it into your urls.

re_path(r"^admin/su/", include("su.urls")),