From ed3d74e61300f91818eeff9dad7e9d35c556f75a Mon Sep 17 00:00:00 2001 From: Weitian LI Date: Tue, 24 Jun 2014 16:39:42 +0800 Subject: Added app schedule, tools and archive/templatetags; updated settings. * Added app 'schedule' to provides a more generic schedule page * Added fake app 'tools' to holds generic utilities * Moved notice/templatetags to tools/templatetags * Small change to archive.models.Archive display format * Added archive/templatetags * Small update to introduction page --- django_skaschool/settings.py | 2 ++ django_skaschool/settings_mysql.py | 2 ++ django_skaschool/settings_production.py | 2 ++ 3 files changed, 6 insertions(+) (limited to 'django_skaschool') diff --git a/django_skaschool/settings.py b/django_skaschool/settings.py index bdc5c38..6816bdf 100644 --- a/django_skaschool/settings.py +++ b/django_skaschool/settings.py @@ -54,6 +54,8 @@ LOCAL_APPS = ( 'page', 'notice', 'archive', + 'schedule', + 'tools', # fake app to hold generic utilities ) # INSTALLED_APPS INSTALLED_APPS = DEFAULT_APPS + THIRD_PARTY_APPS + LOCAL_APPS diff --git a/django_skaschool/settings_mysql.py b/django_skaschool/settings_mysql.py index 4bd9f96..da3d211 100644 --- a/django_skaschool/settings_mysql.py +++ b/django_skaschool/settings_mysql.py @@ -54,6 +54,8 @@ LOCAL_APPS = ( 'page', 'notice', 'archive', + 'schedule', + 'tools', # fake app to hold generic utilities ) # INSTALLED_APPS INSTALLED_APPS = DEFAULT_APPS + THIRD_PARTY_APPS + LOCAL_APPS diff --git a/django_skaschool/settings_production.py b/django_skaschool/settings_production.py index 93b56c8..70fa094 100644 --- a/django_skaschool/settings_production.py +++ b/django_skaschool/settings_production.py @@ -61,6 +61,8 @@ LOCAL_APPS = ( 'page', 'notice', 'archive', + 'schedule', + 'tools', # fake app to hold generic utilities ) # INSTALLED_APPS INSTALLED_APPS = DEFAULT_APPS + THIRD_PARTY_APPS + LOCAL_APPS -- cgit v1.2.2