Django registration app which required inspection step before activation
Project description
- Author
Alisue <lambdalisue@hashnote.net>
- Supported python versions
2.6, 2.7, 3.2, 3.3, 3.4
- Supported django versions
1.3 - 1.6, and 1.7
django-inspectional-registration is a enhanced application of django-registration. The following features are available
Inspection steps for registration. You can accept or reject the account registration before sending activation key to the user.
Password will be filled in after the activation step to prevent that the user forget them previously filled password in registration step (No password filling in registration step)
Password can be generated programatically and force to activate the user. The generated password will be sent to the user by e-mail.
Any Django models are available to use as supplemental information of registration if the models are subclasses of registration.supplements.RegistrationSupplementBase. It is commonly used for inspection.
You can send any additional messages to the user in each steps (acceptance, rejection and activation)
The behaviors of the application are customizable with Backend feature.
The E-mails or HTMLs are customizable with Django template system.
Can be migrated from django-registration simply by south
django-mailer compatible. Emails sent from the application will use django-mailer if ‘mailer’ is in your INSTALLED_APPS
The difference with django-registration
While django-registration requires 3 steps for registration, django-inspectional-registration requires 5 steps and inspector for registration.
Online documentation
See django-inspectional-registration official documents for more detail
For translators
You can compile the latest message files with the following command
$ python setup.py compile_messages
The command above is automatically called before sdist command if you call python manage.py sdist.
Backward incompatibility
Because of an issue#24, django-inspectional-registration add the following three new options.
REGISTRATION_DJANGO_AUTH_URLS_ENABLE If it is False, django-inspectional-registration do not define the views of django.contrib.auth. It is required to define these view manually. (Default: True)
REGISTRATION_DJANGO_AUTH_URL_NAMES_PREFIX It is used as a prefix string of view names of django.contrib.auth. For backward compatibility, set this value to 'auth_'. (Default: '')
REGISTRATION_DJANGO_AUTH_URL_NAMES_SUFFIX It is used as a suffix string of view names of django.contrib.auth. For backward compatibility, set this value to ''. (Default: '')
This changes were introduced from version 0.4.0, to keep the backward compatibility, write the following in your settings module.
REGISTRATION_DJANGO_AUTH_URLS_ENABLE = True
REGISTRATION_DJANGO_AUTH_URL_NAMES_PREFIX = 'auth_'
REGISTRATION_DJANGO_AUTH_URL_NAMES_SUFFIX = ''
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-inspectional-registration-0.4.5.tar.gz
.
File metadata
- Download URL: django-inspectional-registration-0.4.5.tar.gz
- Upload date:
- Size: 54.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 193f6fd715abcd67749c15eff70bfe4ed693be87dc50605742336b855c5c4e07 |
|
MD5 | fdb60bb1eab80b9e5df12804f37e225c |
|
BLAKE2b-256 | 48ed69106ef1e5476bb750ae5f0eb7c802af862115ed7bb2f6a4193caa6bf303 |