mirror of https://github.com/django/django.git
9 lines
169 B
Python
9 lines
169 B
Python
|
from django.conf.urls.defaults import *
|
||
|
from django.contrib import admin
|
||
|
|
||
|
admin.autodiscover()
|
||
|
|
||
|
urlpatterns = patterns('',
|
||
|
(r'^admin/', include(admin.site.urls)),
|
||
|
)
|