mirror of
https://github.com/django/django.git
synced 2025-06-01 09:39:12 +00:00
11 lines
266 B
Python
11 lines
266 B
Python
from django.conf.urls import include, url
|
|
from django.contrib import admin
|
|
|
|
urlpatterns = [
|
|
# Examples:
|
|
# url(r'^$', '{{ project_name }}.views.home', name='home'),
|
|
# url(r'^blog/', include('blog.urls')),
|
|
|
|
url(r'^admin/', include(admin.site.urls)),
|
|
]
|