blob: 76e4551f57f3c2afb208c85f04a015879909e84d (
plain)
1
2
3
4
5
6
7
8
|
from django.urls import include, path
from . import views
urlpatterns = [
path('extra/<extra>/', views.empty_view, name='inner-extra'),
path('', include('urlpatterns.more_urls')),
]
|