A Django reusable application for presentations powered by S5.
- clone this repository
- Rename it as you like
- Added it to your INSTALLED_APPS.
- add the requirements to your INSTALLED_APPS:
exemple:
INSTALLED_APPS = (
...
'basic.places',
'tagging',
'django.contrib.markup'
...
)
- update your urls.py to link to the app.
If the app is called "presentation":
url(r'^presentation/', include('presentation.urls')),
- Run
syncdb
.