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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django-simple-account-0.0.2.tar.gz.
File metadata
- Download URL: django-simple-account-0.0.2.tar.gz
- Upload date:
- Size: 19.7 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.45.0 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de8461243f62c8379415bbac93ba3fcf0c2e17c2d6335216b5e0284ceb98c0fe
|
|
| MD5 |
8dd5b1d891de1a8bbad4108867727ea4
|
|
| BLAKE2b-256 |
75f13bb84a3a270fb1a50c43fd99060b4b3615da00e42424323c6eb8bda75822
|
File details
Details for the file django_simple_account-0.0.2-py3-none-any.whl.
File metadata
- Download URL: django_simple_account-0.0.2-py3-none-any.whl
- Upload date:
- Size: 24.0 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.45.0 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8bacc949297fe2345c898402d3e1f08a15f13ed42485cc88a99dbdb8e2217145
|
|
| MD5 |
1a21b379dd378393dd28f899f84fc4d8
|
|
| BLAKE2b-256 |
0a6dc9734531e541fd3d0fb12b969749b6983384521bf96c2af580f247c9c48f
|