This is simple django app for managing tab:s.
Users can register and add items to eace others tab:s.
-
Add "tapmanager to your INSTALLED_APPS settings like this::
INSTALLED_APPS = ( ... 'tapmanager', )
-
Include the polls URLconf in your project urls.py like this::
url(r'^tapmanager/', include('tapmanager.urls')),
-
You need to configure LOGIN_URL in your settings file also becouse this app handels login and registration also.
-
Run 'python manage.py syncdb' to create models.
-
You are ready to test it´.