summaryrefslogtreecommitdiff
path: root/program/urls.py
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <ers@Dell-XPS.(none)>2013-03-08 21:21:57 (GMT)
committerErnesto Rico-Schmidt <ers@Dell-XPS.(none)>2013-03-08 21:21:57 (GMT)
commit66de5f8ef5bc2c621f032e0cada559c085e69ea5 (patch)
treee8c55540c7a965f5258096d9a94d0df0f5318083 /program/urls.py
parent763d8a04a87ce110ead286f71a34142ccc8ff041 (diff)
moved CSS generation to program application.
Diffstat (limited to 'program/urls.py')
-rw-r--r--program/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/program/urls.py b/program/urls.py
index 3aa1245..58dc0c0 100644
--- a/program/urls.py
+++ b/program/urls.py
@@ -4,7 +4,7 @@ from django.views.decorators.cache import cache_page
from django.views.generic.list_detail import object_detail, object_list
from models import Host, Show, TimeSlot
-from views import current_show, day_schedule, recommendations, show_list, week_schedule
+from views import current_show, day_schedule, recommendations, show_list, week_schedule, styles
from datetime import date
@@ -35,6 +35,7 @@ urlpatterns = patterns('',
url(r'^shows/(?P<slug>[\w-]+)/?$', object_detail, shows_dict, name='show-detail'),
url(r'^(?P<object_id>\d+)/?$', object_detail, timeslots_dict, name='timeslot-detail'),
url(r'^week/?$', week_schedule),
+ url(r'^styles.css$', styles),
)
if settings.DEBUG: