-
Notifications
You must be signed in to change notification settings - Fork 0
/
PKG-INFO
68 lines (57 loc) · 2.71 KB
/
PKG-INFO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
Metadata-Version: 1.1
Name: djdt_user_panel
Version: 0.1
Summary: Panel for the Django Debug toolbar to quickly switch between users
Home-page: https://rosco77.com/
Author: Rosco77
Author-email: [email protected]
License: BSD License
Description: #djdt-user-panel
Panel for the [Django Debug Toolbar](https://github.com/django-debug-toolbar/django-debug-toolbar)
to easily and quickly switch between users.
* View details on the currently logged in user.
* Easily switch between recently logged in users.
* Login as any user from an arbitrary email address, username or user ID.
#####Requirements
* Django 1.10
* Python 3.5
* Django Debug Toolbar 1.6
##Installation
Add ``djdt_user_panel`` to your ``INSTALLED_APPS``
INSTALLED_APPS = (
...
'djdt_user_panel',
...
)
Add ``djdt_user_panel.panels.UserPanel`` to ``DEBUG_TOOLBAR_PANELS``
DEBUG_TOOLBAR_PANELS = (
'djdt_user_panel.panels.UserPanel',
'debug_toolbar.panels.versions.VersionsPanel',
'debug_toolbar.panels.timer.TimerPanel',
'debug_toolbar.panels.settings.SettingsPanel',
'debug_toolbar.panels.headers.HeadersPanel',
'debug_toolbar.panels.request.RequestPanel',
'debug_toolbar.panels.sql.SQLPanel',
'debug_toolbar.panels.staticfiles.StaticFilesPanel',
'debug_toolbar.panels.templates.TemplatesPanel',
'debug_toolbar.panels.cache.CachePanel',
'debug_toolbar.panels.signals.SignalsPanel',
'debug_toolbar.panels.logging.LoggingPanel',
'debug_toolbar.panels.redirects.RedirectsPanel',
)
You can disable any of the above panels you do not wish to show in the Debug Toolbar by removing them or commenting them out.
##Links
Based on original code by [playfire](https://github.com/playfire/django-debug-toolbar-user-panel)
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content