Mercurial > public > madeira
view band/urls.py @ 205:b4566292bbfe tip
Update t-shirt inventory
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 06 Nov 2022 17:42:25 -0600 |
parents | 312f198e8958 |
children |
line wrap: on
line source
""" Urls for the band application. """ from django.conf.urls import url import band.views urlpatterns = [ url(r'^bio/$', band.views.bio, name='band-bio'), url(r'^buy/$', band.views.buy, name='band-buy'), url(r'^contact/$', band.views.contact, name='band-contact'), url(r'^photos/$', band.views.photos_index, name='band-photo_index'), url(r'^photos/(\d+)/$', band.views.photo_detail, name='band-photo_detail'), ]