Django simple account
Project description
Requirements
Python 3.6+
A supported version of Django (currently 3.x)
Getting It
You can get Django tree materialized 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
Built Distribution
Close
Hashes for django-simple-account-0.0.5.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab7f1f71b5d89b28346421aeb862e6045b2ca27ca29e4aa3b596794f412b1043 |
|
MD5 | 296dcb78078928c899c5525898990b8f |
|
BLAKE2b-256 | f555012ebc2590a039a1e000cae6a50731c9539e634c7c703ad2560cf6b3152a |
Close
Hashes for django_simple_account-0.0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 372d38f18a167464259ed87e802cd29ca03f0f10b025b1ca8f4c957f2cb0b709 |
|
MD5 | 38f68bc046896aaed79998ad4094f09b |
|
BLAKE2b-256 | 58ff3259e43368681c5a5e97adc8393177d2ceb9da3b17561b9f149c76804746 |