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.18.tar.gz
(896.0 kB
view details)
Built Distribution
File details
Details for the file django-simple-account-0.0.18.tar.gz
.
File metadata
- Download URL: django-simple-account-0.0.18.tar.gz
- Upload date:
- Size: 896.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31fbdfa3b8c7d692c1ce3d8a09969155061f63d3fdbd9d2ab396693402c22843 |
|
MD5 | d6915fa15d6641ae315cd51420a54e16 |
|
BLAKE2b-256 | 23dd0c021382247b57909e1dec6b5c0795e7c57b39cf75caffa5b2e6f5be50e3 |
File details
Details for the file django_simple_account-0.0.18-py3-none-any.whl
.
File metadata
- Download URL: django_simple_account-0.0.18-py3-none-any.whl
- Upload date:
- Size: 905.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5fa52fbe2785bb8e4ba01107e751540715e55507ec089f6ee59dd5c951e534e2 |
|
MD5 | c7f17a0dec79b0b5161280a2c2c185b9 |
|
BLAKE2b-256 | ac5aceb8e8f3efe03d045d4a0a05b86fdff819550789c33bf6cfa99f36219274 |