mirror of
https://github.com/django/django.git
synced 2024-11-18 15:34:16 +00:00
10 lines
244 B
Python
10 lines
244 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^customurlconf/noslash$', views.empty_view),
|
|
url(r'^customurlconf/slash/$', views.empty_view),
|
|
url(r'^customurlconf/needsquoting#/$', views.empty_view),
|
|
]
|