Installation¶
Install the development version:
pip install django-user-accounts
Add account to your INSTALLED_APPS setting:
INSTALLED_APPS = (
# ...
"account",
# ...
)
See the list of Settings to modify the default behavior of django-user-accounts and make adjustments for your website.
Add account.urls to your URLs definition:
urlpatterns = patterns("",
...
url(r"^account/", include("account.urls")),
...
)
Add account.context_processors.account to TEMPLATE_CONTEXT_PROCESSORS:
TEMPLATE_CONTEXT_PROCESSORS = [
...
"account.context_processors.account",
...
]
Add account.middleware.LocaleMiddleware and
account.middleware.TimezoneMiddleware to MIDDLEWARE_CLASSES:
MIDDLEWARE_CLASSES = [
...
"account.middleware.LocaleMiddleware",
"account.middleware.TimezoneMiddleware",
...
]
Optionally include account.middleware.ExpiredPasswordMiddleware in
MIDDLEWARE_CLASSES if you need password expiration support:
MIDDLEWARE_CLASSES = [
...
"account.middleware.ExpiredPasswordMiddleware",
...
]
Once everything is in place make sure you run migrate to modify the
database with the account app models.
Dependencies¶
django.contrib.auth¶
This is bundled with Django. It is enabled by default with all new Django
projects, but if you adding django-user-accounts to an existing project you
need to make sure django.contrib.auth is installed.
django.contrib.sites¶
This is bundled with Django. It is enabled by default with all new Django projects. It is used to provide links back to the site in emails or various places in templates that need an absolute URL.
django-appconf¶
We use django-appconf for app settings. It is listed in install_requires
and will be installed when pip installs.