mirror of
https://github.com/Hopiu/django.git
synced 2026-04-07 00:21:00 +00:00
8 lines
155 B
Python
8 lines
155 B
Python
|
|
from django.conf.urls import patterns, include
|
||
|
|
|
||
|
|
from django.contrib import admin
|
||
|
|
|
||
|
|
urlpatterns = patterns('',
|
||
|
|
(r'^admin/', include(admin.site.urls)),
|
||
|
|
)
|