mirror of
https://github.com/Hopiu/django.git
synced 2026-05-01 04:04:54 +00:00
9 lines
221 B
Python
9 lines
221 B
Python
|
|
from django.conf.urls import patterns, include, url
|
||
|
|
|
||
|
|
from django.contrib import admin
|
||
|
|
|
||
|
|
urlpatterns = patterns('',
|
||
|
|
# This is the same as in the default project template
|
||
|
|
url(r'^admin/', include(admin.site.urls)),
|
||
|
|
)
|