annotate news/urls.py @ 91:c15b50f1ebfc

For Django 1.5: Don't include old photologue URLs. They still use the old function style generic views, which are missing from Django 1.5. Since I don't use these URLs, and at some point they broke in the admin, just get rid of them for now.
author Brian Neal <bgneal@gmail.com>
date Tue, 27 Aug 2013 20:54:38 -0500
parents e2868ad47a1e
children 312f198e8958
rev   line source
bgneal@45 1 """
bgneal@45 2 Urls for the news application.
bgneal@45 3
bgneal@45 4 """
bgneal@66 5 from django.conf.urls import patterns, url
bgneal@45 6 from django.views.generic import DetailView, ListView
bgneal@45 7
bgneal@45 8 from news.models import News
bgneal@45 9
bgneal@45 10
bgneal@45 11 urlpatterns = patterns('',
bgneal@45 12 url(r'^$',
bgneal@45 13 ListView.as_view(
bgneal@45 14 model=News,
bgneal@45 15 paginate_by=10,
bgneal@45 16 context_object_name='news_list'),
bgneal@45 17 name='news-index'),
bgneal@45 18 url(r'^story/(?P<pk>\d+)/$',
bgneal@45 19 DetailView.as_view(model=News, context_object_name='story'),
bgneal@45 20 name='news-item')
bgneal@45 21 )