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.17.tar.gz
(896.0 kB
view hashes)
Built Distribution
Close
Hashes for django-simple-account-0.0.17.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07df915cc0d8b7d2eb47d083d2c361f21f1698d58014e528a188d5528489fdcb |
|
MD5 | 3f576a308eca7e2baea6e2bc8aa24492 |
|
BLAKE2b-256 | fa41b5f4f5aad50013321a326401f3f8ed7f2eaac96d9829c471cd570b954d70 |
Close
Hashes for django_simple_account-0.0.17-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3bc0c3441705894a989f50b02cee310156ac1489a79fd2803ab08148f1b3ddde |
|
MD5 | 7977c846d4ca5a9f9ad71aa8d4082222 |
|
BLAKE2b-256 | babf1c70118808641c5b06130d62ca797f188ad72c2a9a0fa3110a01aea4df60 |