mirror of
https://github.com/django/django.git
synced 2025-07-23 05:05:17 +00:00
Refs #23813 -- Moved URLconfs into module and tidied docstrings.
This commit is contained in:
parent
392f64842f
commit
f2975c021d
10 changed files with 35 additions and 53 deletions
7
tests/check_framework/urls/include_with_dollar.py
Normal file
7
tests/check_framework/urls/include_with_dollar.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from django.conf.urls import include, url
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^', include([
|
||||
url(r'^include-with-dollar$', include([])),
|
||||
])),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue