mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-05-20 05:11:53 +00:00
10 lines
237 B
Python
10 lines
237 B
Python
|
|
from django.conf.urls.defaults import include, patterns
|
||
|
|
|
||
|
|
# Uncomment the next two lines to enable the admin:
|
||
|
|
from django.contrib import admin
|
||
|
|
admin.autodiscover()
|
||
|
|
|
||
|
|
urlpatterns = patterns('',
|
||
|
|
(r'^admin/', include(admin.site.urls)),
|
||
|
|
)
|