django/tests/modeltests/timezones/urls.py
Aymeric Augustin 9b1cb755a2 Added support for time zones. Thanks Luke Plant for the review. Fixed #2626.
For more information on this project, see this thread:
cf0423bbb8



git-svn-id: http://code.djangoproject.com/svn/django/trunk@17106 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-11-18 13:01:06 +00:00

10 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)),
)