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:
17
tests/admin_scripts/app_with_urls/urls_nons.py
Normal file
17
tests/admin_scripts/app_with_urls/urls_nons.py
Normal file
@@ -0,0 +1,17 @@
|
||||
from django.urls import path
|
||||
|
||||
from . import views
|
||||
|
||||
app_name = "app_with_urls"
|
||||
|
||||
urlpatterns = [
|
||||
path(
|
||||
route="unnamed",
|
||||
view=views.view_func_nons_unnamed,
|
||||
),
|
||||
path(
|
||||
route="named",
|
||||
view=views.view_func_nons_named,
|
||||
name="named",
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user