mirror of
https://github.com/django/django.git
synced 2025-07-23 13:15:32 +00:00
7 lines
193 B
Python
7 lines
193 B
Python
from django.conf.urls import url
|
|
|
|
urlpatterns = [
|
|
url(r'^customurlconf/noslash$', 'view'),
|
|
url(r'^customurlconf/slash/$', 'view'),
|
|
url(r'^customurlconf/needsquoting#/$', 'view'),
|
|
]
|