mirror of
https://github.com/django/django.git
synced 2025-11-07 07:15:35 +00:00
Fixed #28800 -- Added a listurls management command
This commit is contained in:
12
tests/admin_scripts/app_with_urls/root_urls.py
Normal file
12
tests/admin_scripts/app_with_urls/root_urls.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from django.urls import include, path
|
||||
|
||||
urlpatterns = [
|
||||
path(
|
||||
route="nons/",
|
||||
view=include("admin_scripts.app_with_urls.urls_nons"),
|
||||
),
|
||||
path(
|
||||
route="namespaced/",
|
||||
view=include("admin_scripts.app_with_urls.urls_namespaced", namespace="ns"),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user