Dirk Alders 6b55e81816 Issues (TODO) moved to issuetracker | 3 veckor sedan | |
---|---|---|
locale/de/LC_MESSAGES | 4 år sedan | |
migrations | 3 veckor sedan | |
templates/users | 4 år sedan | |
.gitignore | 4 år sedan | |
LICENSE | 4 år sedan | |
README.md | 3 veckor sedan | |
__init__.py | 4 år sedan | |
admin.py | 4 år sedan | |
apps.py | 4 år sedan | |
context.py | 3 veckor sedan | |
forms.py | 4 år sedan | |
middleware.py | 4 år sedan | |
models.py | 4 år sedan | |
parameter.py | 3 veckor sedan | |
signals.py | 3 år sedan | |
tests.py | 4 år sedan | |
urls.py | 4 år sedan | |
views.py | 3 veckor sedan |
With the django library users, you are abel to register users, add users, login, logout and do some basic adjustments for the user. This library includes some pages for that based on the extension theme.
You need to ensure that pytz is available in your python environment.
You need to integrate the themes library as well.
Clone the library in your django application.
Add the following line to the list INSTALLED_APPS
:
'users.apps.UsersConfig',
and add the following line to the list urlpatterns
:
path('users/', include('users.urls')),
All parameters can be added in the django settings.py
or in a config.py
in the root django folder. The definitions in the config.py
will be used before the definitions in settings.py
.
This parameter can be True
or False
. It enables or disables the self registration.
You might want to add the user actions by calling users.context.menubar(bar, request)
with bar
as menubar. See theme dosumentation for more details.