blob: c051296a742637b4d5fe416544f4d7a9aa37b26d (
plain)
1
2
3
4
5
6
7
|
from django.conf.urls import patterns
urlpatterns = patterns('',
(r'^customurlconf/noslash$', 'view'),
(r'^customurlconf/slash/$', 'view'),
(r'^customurlconf/needsquoting#/$', 'view'),
)
|