Skip to content

Commit

Permalink
Updated urls.py to the new hotness.
Browse files Browse the repository at this point in the history
  • Loading branch information
trey committed Aug 14, 2008
1 parent 3415126 commit 8cd057e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion urls.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
from django.conf import settings
from django.conf.urls.defaults import *
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
(r'^admin/', include('django.contrib.admin.urls')),
(r'^admin/doc/', include('django.contrib.admindocs.urls')),
(r'^admin/(.*)', admin.site.root),
)

# This allows Django to serve static files when you're developing your project.
Expand Down

0 comments on commit 8cd057e

Please sign in to comment.