mirror of
https://github.com/django/django.git
synced 2024-11-24 02:47:35 +01:00
baf9604ed8
Thanks Florian Apolloner for the review and implementation idea.
13 lines
209 B
Python
13 lines
209 B
Python
from django.urls import re_path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
re_path(
|
|
r"^more/(?P<extra>\w+)/$",
|
|
views.empty_view,
|
|
{"sub-extra": True},
|
|
name="inner-more",
|
|
),
|
|
]
|