view mysite/band/urls.py @ 28:a404f93a68d3

Decrease by 2 orders of magnitude the number of queries needed to generate the gigs page for the Madeira.
author Brian Neal <bgneal@gmail.com>
date Thu, 31 Mar 2011 00:14:34 +0000
parents 0dcfcdf50c62
children 25e00d1b99bf
line wrap: on
line source
from django.conf.urls.defaults import *

urlpatterns = patterns('mysite.band.views',
   (r'^$', 'index'),
   (r'^bio/$', 'bio'),
   (r'^buy/$', 'buy'),
   (r'^contact/$', 'contact'),
   (r'^gigs/$', 'gigs'),
   (r'^gigs/flyers$', 'flyers'),
   (r'^mail/$', 'mail'),
   (r'^mail/confirm/([a-zA-Z0-9]+)$', 'mail_confirm'),
   (r'^mail/not_found$', 'mail_not_found'),
   (r'^mail/thanks$', 'mail_thanks'),
   (r'^mail/unsubscribe$', 'mail_unsubscribe'),
   (r'^news/$', 'news'),
   (r'^photos/$', 'photos_index'),
   (r'^photos/(\d+)$', 'photo_detail'),
   (r'^press/$', 'press_index'),
   (r'^press/(\d+)$', 'press_detail'),
   (r'^songs/$', 'songs'),
   (r'^videos/$', 'videos_index'),
   (r'^videos/(\d+)$', 'video_detail'),
)

urlpatterns += patterns('mysite.band.admin_views',
   (r'^admin/band/email/$', 'email'),
   (r'^admin/band/email_sent/$', 'email_sent'),
)