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