Skip to main content

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

Project details


Release history Release notifications | RSS feed

This version

0.1

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 hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page