diff options
author | Weitian LI <liweitianux@gmail.com> | 2014-06-24 23:09:43 +0800 |
---|---|---|
committer | Weitian LI <liweitianux@gmail.com> | 2014-06-24 23:09:43 +0800 |
commit | 88c4fa2c87138d9f4707ad7193662953f9de725f (patch) | |
tree | 0185998a92184d0c5b76513d0c94774a06274432 /django_skaschool/urls.py | |
parent | af609a29bee3bc17800cf061c66b6eabcf18234f (diff) | |
download | django-skaschool-88c4fa2c87138d9f4707ad7193662953f9de725f.tar.bz2 |
Added schedule.html template for app 'schedule'.
* added 'schedule.views.ScheduleView'
* added 'schedule.html' template, with 'schedule.css' and 'schedule.js'
* added 'schedule.urls', updated django_skaschool.urls
* added tools/templatetags/dict_utils.py
* converted schedule models to south-based
* removed original 'page/templates/page/program.html', related urls
* updated navbar.html
Diffstat (limited to 'django_skaschool/urls.py')
-rw-r--r-- | django_skaschool/urls.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/django_skaschool/urls.py b/django_skaschool/urls.py index 60a298a..7b9ac2f 100644 --- a/django_skaschool/urls.py +++ b/django_skaschool/urls.py @@ -20,6 +20,8 @@ urlpatterns = patterns('', url(r'^$', IndexView.as_view(), name='index'), # app 'page' url(r'^page/', include('page.urls')), + # app 'schedule' + url(r'^schedule/', include('schedule.urls')), # app 'notice' url(r'^notice/', include('notice.urls')), # app 'archive' |