mirror of
https://github.com/jazzband/django-defender.git
synced 2026-05-01 20:24:49 +00:00
7 lines
159 B
Python
7 lines
159 B
Python
from django.conf.urls import patterns, include
|
|
from django.contrib import admin
|
|
|
|
urlpatterns = patterns(
|
|
'',
|
|
(r'^admin/', include(admin.site.urls)),
|
|
)
|