Dirk Alders f31771b588 Password and User settings Form implemented | 4 дні тому | |
---|---|---|
locale/de/LC_MESSAGES | 4 роки тому | |
migrations | 4 дні тому | |
templates/users | 4 дні тому | |
.gitignore | 4 роки тому | |
LICENSE | 4 роки тому | |
README.md | 5 дні тому | |
__init__.py | 4 роки тому | |
admin.py | 4 роки тому | |
apps.py | 4 роки тому | |
context.py | 5 дні тому | |
emails.py | 5 дні тому | |
forms.py | 4 дні тому | |
middleware.py | 4 роки тому | |
models.py | 4 дні тому | |
parameter.py | 5 дні тому | |
signals.py | 3 тижднів тому | |
tests.py | 4 роки тому | |
tokens.py | 5 дні тому | |
urls.py | 5 дні тому | |
views.py | 4 дні тому |
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 this line to let django know the login url
LOGIN_URL = 'users-login'
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.
This parameter can be True
or False
. It enables or disables the mail validation after self registration.
This parameter can be True
or False
. It enables or disables the activation by an admin after mail validation.
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.