From: Brett Parker Date: Tue, 12 Jun 2012 14:21:36 +0000 (+0100) Subject: Change to Django 1.3 syntax for admin site X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/commitdiff_plain/9227f88e18b73794e86cface4f2aab31ed33f0d4 Change to Django 1.3 syntax for admin site --- diff --git a/sommitrealweird/urls.py b/sommitrealweird/urls.py index 6106b9f..6450746 100644 --- a/sommitrealweird/urls.py +++ b/sommitrealweird/urls.py @@ -22,7 +22,7 @@ urlpatterns = patterns('', # Uncomment this for admin: (r'^$', 'bpcms.views.document_view', {'slug': 'index'}), (r'^media/(?P.*)$', 'django.views.static.serve', {'document_root': MEDIA_ROOT, 'show_indexes': True}), - (r'^admin/(.*)$', admin.site.root), + (r'^admin/', include(admin.site.urls)), (r'^blog/', include('blog.urls')), (r'^photo/', include('photo.urls')), (r'^photos/', include('photo.urls')),