1
0
mirror of https://github.com/django/django.git synced 2025-01-26 18:19:18 +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)),
]