from django.conf.urls.defaults import * from django.views.generic.list_detail import object_detail, object_list from models import BroadcastFormat, Host, Show, TimeSlot from views import current_show, day_schedule, recommendations, show_list, week_schedule host_dict = { 'queryset': Host.objects.all(), 'template_object_name': 'host' } show_dict = { 'queryset': Show.objects.all(), 'template_object_name': 'show' } timeslot_dict = { 'queryset': TimeSlot.objects.all(), 'template_object_name': 'timeslot' } recommendation_dict = {'template_name': 'program/recommendations_box.html'} urlpatterns = patterns('', (r'^today/?$', day_schedule), (r'^(?P\d{4})/(?P\d{1,2})/(?P\d{1,2})/?$', day_schedule), (r'^(?P\d{4})/(?P\d{1,2})/?$', week_schedule), (r'^current_box/?$', current_show), (r'^hosts/?$', object_list, host_dict), url(r'^hosts/(?P\d+)/?$', object_detail, host_dict, name='host-detail'), (r'^tips/?$', recommendations), (r'^tips_box/?$', recommendations, recommendation_dict), (r'^shows/?$', show_list), url(r'^shows/(?P[\w-]+)/?$', object_detail, show_dict, name='show-detail'), url(r'^(?P\d+)/?$', object_detail, timeslot_dict, name='timeslot-detail'), (r'^week/?$', week_schedule) )