Mercurial > public > madeira
annotate gigs/urls.py @ 109:afe5e14c7f94
Tweak to last commit.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 18 Oct 2013 21:34:43 -0500 |
parents | e2868ad47a1e |
children | 23efa49f5e29 |
rev | line source |
---|---|
bgneal@44 | 1 """ |
bgneal@44 | 2 Urls for the gigs application. |
bgneal@44 | 3 |
bgneal@44 | 4 """ |
bgneal@66 | 5 from django.conf.urls import patterns, url |
bgneal@44 | 6 from django.views.generic import ListView |
bgneal@44 | 7 |
bgneal@44 | 8 from gigs.models import Gig |
bgneal@44 | 9 |
bgneal@44 | 10 |
bgneal@44 | 11 urlpatterns = patterns('', |
bgneal@44 | 12 url(r'^$', 'gigs.views.gigs', name='gigs-index'), |
bgneal@44 | 13 url(r'^flyers/$', |
bgneal@44 | 14 ListView.as_view( |
bgneal@44 | 15 queryset=Gig.objects.exclude(flyer__isnull=True).select_related('flyer'), |
bgneal@44 | 16 template_name='gigs/flyers.html', |
bgneal@44 | 17 context_object_name='gig_list'), |
bgneal@44 | 18 name='gigs-flyers') |
bgneal@44 | 19 ) |