mirror of
https://github.com/django/django.git
synced 2025-11-07 07:15:35 +00:00
13 lines
291 B
Python
13 lines
291 B
Python
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"),
|
|
),
|
|
]
|