A team roster Django application
Python CSS
Pull request Compare This branch is even with PeterJohnson:master.
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
batch_select
static/style
templates/roster
README.md
__init__.py
admin.py
fields.py
filters.py
forms.py
models.py
tests.py
urls.py
views.py

README.md

Roster

A team roster implemention built for django.

Setup

  • Clone the latest copy from github into your django project.
  • Add the roster to your INSTALLED_APPS in settings.py:

    'roster',
    
  • Add a url mapping to your project's urls.py file (an empty prefix will work, but put it last):

    (r'^roster/$', include('roster.urls')),
    
  • Make sure you have a MEDIA_ROOT and MEDIA_URL set up in your settings.py:

    MEDIA_ROOT = '/home/www/mydjango-project/media/'
    
  • Sync the database:

    % python manage.py syncdb
    
  • Provide css and images at {{MEDIA_URL}}roster/style.

Administration

Administration is easiest through the django admin interface.