mirror of
https://github.com/jazzband/django-constance.git
synced 2026-05-01 12:14:53 +00:00
8 lines
125 B
Python
8 lines
125 B
Python
from django.contrib import admin
|
|
|
|
from django.conf.urls import url
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^admin/', admin.site.urls),
|
|
]
|