django-teamgroups

A simple Django app to enable sites to have teams of users.


License
BSD-3-Clause
Install
pip install django-teamgroups==0.1.9

Documentation

Teamgroups

Teamgroups is a simple Django app to enable sites to have teams of users.

Detailed documentation is in the "docs" directory.

Quick start

  1. Add "teamgroups" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = (
        ...
        'teamgroups',
    )
    
  2. Include the teamgroups URLconf in your project urls.py like this:

    url(r'^teamgroups/', include('teamgroups.urls')),
    
  3. Run python manage.py migrate to create the teamgroups models.