mirror of
https://github.com/Hopiu/django.git
synced 2026-04-11 10:31:04 +00:00
This would break upcoming changes and AdminSite assumptions about having an app_config for each application that has registered models.
7 lines
171 B
Python
7 lines
171 B
Python
from django.conf.urls import include, url
|
|
|
|
from . import admin as tz_admin # NOQA: register tz_admin
|
|
|
|
urlpatterns = [
|
|
url(r'^admin/', include(tz_admin.site.urls)),
|
|
]
|