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.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a57c43d4f587dc92329468cf572eb478092f0de4f6f7e0310a6e2a5295cfe66 |
|
MD5 | c3a6eb19a7dc97c25e1edbce5aaad9b7 |
|
BLAKE2b-256 | 71ca98d94fd0bf766bf109c4cb2d94952cdbd77e906248cd96d0c7043799124f |
Close
Hashes for django_simple_account-0.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4e3c3ab6c88b0960a67f70c55a9cffef66bdc7eaa9b8f909cd786c28c82546b |
|
MD5 | 8c97c7a6ff7d364a9f92ff2a92aa76f1 |
|
BLAKE2b-256 | 7cdf11c97b93e27fae3f0f16385ddcda54358733ca9ac58ddfefaba803d2be90 |