zero-users

Simple app with views and models to manage users and profiles


Keywords
zero, users, app
License
Apache-2.0
Install
pip install zero-users==0.1.7

Documentation

============
Zero Users
============

Another simple app to manage profiles in django.

1. To install run the following command in this directory:

    python setup.py install

2. Add the app in the INSTALLED_APPS on your settings:

    INSTALLED_APPS = (
        ...,
        'users',
        ....,
    )

3. Add to your urls.py:
    
    ...

    urlpatters += patterns('',
        url(r'^users/', include('users.urls')),
    )
    ...

4. Add in you settings.py

   AUTH_PROFILE_MODULE = 'users.Profile'
   LOGIN_URL = '/users/login'
   LOGIN_REDIRECT_URL = '/' # You can use here another path too.