Mercurial > public > madeira
view mysite/urls.py @ 21:f3052378ab47
Updating the home page with a 6 video playlist from Mahogany's. Fixed the flyers on the gig page under chrome. Updated the copyright on the base template.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 20 Mar 2011 19:53:35 +0000 |
parents | 0dcfcdf50c62 |
children | ead7bd49c9e0 |
line wrap: on
line source
from django.conf.urls.defaults import * from django.contrib import admin from mysite import settings admin.autodiscover() urlpatterns = patterns('', (r'^', include('mysite.band.urls')), (r'^admin/', include(admin.site.urls)), (r'^photologue/', include('mysite.photologue.urls')), ) if settings.DEBUG: urlpatterns += patterns('', (r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}), )