Mercurial > public > madeira
view madeira/band/urls.py @ 56:4579bbb6e053
Cleaning up the band app's views.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 07 Apr 2012 16:28:27 -0500 |
parents | 0176eca97d1d |
children | 9b9daefba97a |
line wrap: on
line source
""" Urls for the band application. """ from django.conf.urls.defaults import patterns, url urlpatterns = patterns('band.views', url(r'^bio/$', 'bio', name='band-bio'), url(r'^buy/$', 'buy', name='band-buy'), url(r'^contact/$', 'contact', name='band-contact'), url(r'^photos/$', 'photos_index', name='band-photo_index'), url(r'^photos/(\d+)$', 'photo_detail', name='band-photo_detail'), )