2016-07-13 17:13:47 +00:00
|
|
|
from django.conf.urls import url
|
|
|
|
from views import *
|
|
|
|
|
|
|
|
urlpatterns = [
|
2016-08-04 21:03:39 +00:00
|
|
|
url(r'^(?P<year>\d{4})-(?P<month>\d{2})-(?P<day>\d{2})$', ProgramDayView.as_view(), name='day'),
|
|
|
|
url(r'^$', ProgramOverviewView.as_view(), name='index'),
|
2016-07-13 17:13:47 +00:00
|
|
|
]
|