Django simple account
Project description
Requirements
Python 3.6+
A supported version of Django (currently 3.x)
Getting It
You can get Django simple account by using pip:
$ pip install django-simple-account
If you want to install it from source, grab the git repository from GitHub and run setup.py:
$ git clone git://github.com/kostya-ten/django_simple_account.git $ cd django_simple_account $ python setup.py install
Installation
To enable django_simple_account in your project you need to add it to INSTALLED_APPS in your projects settings.py
INSTALLED_APPS = (
# ...
'django_simple_account',
# ...
)
Enable context_processors
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
# ....
'django_simple_account.context_processors.settings',
],
},
},
]
Add urls.py in project
urlpatterns = [
# ...
path('accounts/', include('django_simple_account.urls')),
]
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
django-simple-account-0.0.14.tar.gz
(895.9 kB
view hashes)
Built Distribution
Close
Hashes for django-simple-account-0.0.14.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f51682f7da833e01e356b2685edf0f6edcc92b9cab273aab643042a78ce43c1d |
|
MD5 | 502d10668c99a483ac9e2b0d73c632b5 |
|
BLAKE2b-256 | 7beff6a9511ad587f570f01b187355b474f423350bf69eff8867dd22b1013507 |
Close
Hashes for django_simple_account-0.0.14-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | aff6366579cda7885f430cdcebb139de372eff856ca971f5278417dd978cf03f |
|
MD5 | 495157f5eec21f48d0ed6915e0b5a450 |
|
BLAKE2b-256 | 07829d9206769ec0ac85bce75b99b7e6b64a7e3e416f213f2707ca2584db5668 |