mirror of
https://github.com/django/django.git
synced 2025-11-07 07:15:35 +00:00
18 lines
297 B
Python
18 lines
297 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "app_with_urls"
|
|
|
|
urlpatterns = [
|
|
path(
|
|
route="unnamed",
|
|
view=views.view_func_namespaced_unnamed,
|
|
),
|
|
path(
|
|
route="named",
|
|
view=views.view_func_namespaced_named,
|
|
name="named",
|
|
),
|
|
]
|