comparison band/urls.py @ 106:846cda22d77c

Bootstrap: Photo pages reworked.
author Brian Neal <bgneal@gmail.com>
date Fri, 18 Oct 2013 20:31:36 -0500
parents e2868ad47a1e
children 312f198e8958
comparison
equal deleted inserted replaced
105:afcbfe23f068 106:846cda22d77c
7 urlpatterns = patterns('band.views', 7 urlpatterns = patterns('band.views',
8 url(r'^bio/$', 'bio', name='band-bio'), 8 url(r'^bio/$', 'bio', name='band-bio'),
9 url(r'^buy/$', 'buy', name='band-buy'), 9 url(r'^buy/$', 'buy', name='band-buy'),
10 url(r'^contact/$', 'contact', name='band-contact'), 10 url(r'^contact/$', 'contact', name='band-contact'),
11 url(r'^photos/$', 'photos_index', name='band-photo_index'), 11 url(r'^photos/$', 'photos_index', name='band-photo_index'),
12 url(r'^photos/(\d+)$', 'photo_detail', name='band-photo_detail'), 12 url(r'^photos/(\d+)/$', 'photo_detail', name='band-photo_detail'),
13 ) 13 )