Django Library Users
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Dirk Alders b63cfaa741 BugFix: Login with non existing user il y a 4 jours
locale/de/LC_MESSAGES Initial users implementation il y a 4 ans
migrations Self registration with mail validation and admin activation implemented il y a 5 jours
templates/users Self registration with mail validation and admin activation implemented il y a 5 jours
.gitignore Initial commit il y a 4 ans
LICENSE Initial commit il y a 4 ans
README.md Self registration with mail validation and admin activation implemented il y a 5 jours
__init__.py Initial users implementation il y a 4 ans
admin.py Initial users implementation il y a 4 ans
apps.py Initial users implementation il y a 4 ans
context.py Self registration with mail validation and admin activation implemented il y a 5 jours
emails.py Self registration with mail validation and admin activation implemented il y a 5 jours
forms.py Self registration with mail validation and admin activation implemented il y a 5 jours
middleware.py Initial users implementation il y a 4 ans
models.py Self registration with mail validation and admin activation implemented il y a 5 jours
parameter.py Self registration with mail validation and admin activation implemented il y a 5 jours
signals.py Logger creation simplified il y a 3 semaines
tests.py Initial users implementation il y a 4 ans
tokens.py Self registration with mail validation and admin activation implemented il y a 5 jours
urls.py Self registration with mail validation and admin activation implemented il y a 5 jours
views.py BugFix: Login with non existing user il y a 4 jours

README.md

users

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.

Requirements

Python

You need to ensure that pytz is available in your python environment.

Django libs

You need to integrate the themes library as well.

Integration

Clone the library in your django application.

Configurations in your settings.py

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'

Configurations in your urls.py

and add the following line to the list urlpatterns:

    path('users/', include('users.urls')),

Parameter

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.

USERS_SELF_REGISTRATION

This parameter can be True or False. It enables or disables the self registration.

USERS_MAIL_VALIDATION

This parameter can be True or False. It enables or disables the mail validation after self registration.

USERS_ADMIN_ACTIVATION

This parameter can be True or False. It enables or disables the activation by an admin after mail validation.

Usage

Actionabr

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.