A batteries-included solution for Django accounts.
Project description
Django-Accounts
===============
Overview
--------
Django-Accounts adds a number of indispensible account-related capabilities to your Django application, including:
* User signup
* Password reset
* Login and logout
* Profile pages
Django-Accounts makes use of class-based views (introduced in Django 1.3) and supports custom user models (introduced in Django 1.5).
Quick Start
-----------
Django-Accounts was designed with a batteries-included philosophy, so it contains everything (including a full set of templates!) that you need to get up and running right away.
To install Django-Accounts from PyPI::
pip install django-accounts
Alternatively, you can also install Django-Accounts from GitHub::
pip install https://github.com/binarybirchtree/django-accounts/archive/master.zip
Add 'accounts' to your INSTALLED_APPS in your settings.py::
INSTALLED_APPS = (
...
'accounts',
...
)
Include the Django-Accounts URLs in your urls.py::
urlpatterns = patterns(
...
(r'^accounts/', include('accounts.urls')),
...
)
That's it!
License
-------
Django-Accounts is licensed under the GNU General Public License, version 3.
Author
------
Binary Birch Tree
http://www.binarybirchtree.com
===============
Overview
--------
Django-Accounts adds a number of indispensible account-related capabilities to your Django application, including:
* User signup
* Password reset
* Login and logout
* Profile pages
Django-Accounts makes use of class-based views (introduced in Django 1.3) and supports custom user models (introduced in Django 1.5).
Quick Start
-----------
Django-Accounts was designed with a batteries-included philosophy, so it contains everything (including a full set of templates!) that you need to get up and running right away.
To install Django-Accounts from PyPI::
pip install django-accounts
Alternatively, you can also install Django-Accounts from GitHub::
pip install https://github.com/binarybirchtree/django-accounts/archive/master.zip
Add 'accounts' to your INSTALLED_APPS in your settings.py::
INSTALLED_APPS = (
...
'accounts',
...
)
Include the Django-Accounts URLs in your urls.py::
urlpatterns = patterns(
...
(r'^accounts/', include('accounts.urls')),
...
)
That's it!
License
-------
Django-Accounts is licensed under the GNU General Public License, version 3.
Author
------
Binary Birch Tree
http://www.binarybirchtree.com
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-Accounts-0.1.tar.gz
(20.5 kB
view details)
File details
Details for the file Django-Accounts-0.1.tar.gz
.
File metadata
- Download URL: Django-Accounts-0.1.tar.gz
- Upload date:
- Size: 20.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f113b3f550928d3e809f94c763a49ce472f6061a8d26e9dad9579198e989621 |
|
MD5 | 828cd6e553f7a67e9a0fbcbc6848f138 |
|
BLAKE2b-256 | 50e4b7a198e53d816a496699f5be2f9d33ce3611c877a84d98f116c87765e27e |