Standin plan is a Django app to provide a standin plan for schools (whatever kind of school).
The application is published as GPL v3 as it should be free and open for all schools and every school should be able to take benefit of others improvements. For us and our children.
Detailed documentation is in the "docs" directory.
- Requires the bitfield-extension from Disqus (https://github.com/disqus/django-bitfield; Apache License).
This application supports the [django-siteprefs] extension. Just install it according to the package instructions.
Add "standin" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'standin', ]
Include the standin URLconf in your project urls.py like this:
url(r'^standin/', include('standin.urls')),
Run python manage.py migrate to create the standin models.
Start the development server and visit http://127.0.0.1:8000/admin/ to create entries (you'll need the Admin app enabled).
Visit http://127.0.0.1:8000/standin/ to see the plan or http://127.0.0.1:8000/standin/teacher for the teacher plan!