Django Library Users
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
Dirk Alders 6b55e81816 Issues (TODO) moved to issuetracker 3 nedēļas atpakaļ
locale/de/LC_MESSAGES Initial users implementation 4 gadus atpakaļ
migrations Added the missing migration step 3 nedēļas atpakaļ
templates/users Initial users implementation 4 gadus atpakaļ
.gitignore Initial commit 4 gadus atpakaļ
LICENSE Initial commit 4 gadus atpakaļ
README.md Issues (TODO) moved to issuetracker 3 nedēļas atpakaļ
__init__.py Initial users implementation 4 gadus atpakaļ
admin.py Initial users implementation 4 gadus atpakaļ
apps.py Initial users implementation 4 gadus atpakaļ
context.py Parameter added, first parameter is USERS_SELF_REGISTRATION 3 nedēļas atpakaļ
forms.py Initial users implementation 4 gadus atpakaļ
middleware.py Initial users implementation 4 gadus atpakaļ
models.py Import and Export for Models added 4 gadus atpakaļ
parameter.py Issues (TODO) moved to issuetracker 3 nedēļas atpakaļ
signals.py Adaption to new logging 3 gadus atpakaļ
tests.py Initial users implementation 4 gadus atpakaļ
urls.py Initial users implementation 4 gadus atpakaļ
views.py Issues (TODO) moved to issuetracker 3 nedēļas atpakaļ

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',

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.

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.