mirror of
https://github.com/django/django.git
synced 2024-11-19 16:04:13 +00:00
9b1cb755a2
For more information on this project, see this thread: http://groups.google.com/group/django-developers/browse_thread/thread/cf0423bbb85b1bbf git-svn-id: http://code.djangoproject.com/svn/django/trunk@17106 bcc190cf-cafb-0310-a4f2-bffc1f526a37
11 lines
227 B
Python
11 lines
227 B
Python
from __future__ import absolute_import
|
|
|
|
from django.conf.urls import patterns, include
|
|
from django.contrib import admin
|
|
|
|
from . import admin as tz_admin
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^admin/', include(admin.site.urls)),
|
|
)
|