annotate gigs/urls.py @ 151:762e46d0bb4a
urlquote photologue filenames when building URLs.
author |
Brian Neal <bgneal@gmail.com> |
date |
Wed, 30 Jul 2014 20:07:21 -0500 |
parents |
23efa49f5e29 |
children |
312f198e8958 |
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@111
|
17 paginate_by=10,
|
bgneal@44
|
18 context_object_name='gig_list'),
|
bgneal@44
|
19 name='gigs-flyers')
|
bgneal@44
|
20 )
|