Refs #23813 -- Moved URLconfs into module and tidied docstrings.

This commit is contained in:
Alasdair Nicol 2015-09-21 18:45:56 +01:00 committed by Tim Graham
parent 392f64842f
commit f2975c021d
10 changed files with 35 additions and 53 deletions

View file

@ -0,0 +1,7 @@
from django.conf.urls import include, url
urlpatterns = [
url('^', include([
url(r'/starting-with-slash/$', lambda x: x),
])),
]