1
0
mirror of https://github.com/django/django.git synced 2025-01-23 00:29:34 +00:00

8 lines
128 B
Python
Raw Normal View History

from django.conf.urls import include, url
from .models import site
urlpatterns = [
url(r'^admin/', include(site.urls)),
]