summaryrefslogtreecommitdiff
path: root/tests/i18n/patterns/urls/included.py
blob: 733e38962af944fb07700918a44fc09c4889006e (plain)
1
2
3
4
5
6
7
8
from django.urls import path
from django.views.generic import TemplateView

view = TemplateView.as_view(template_name="dummy.html")

urlpatterns = [
    path("foo/", view, name="not-prefixed-included-url"),
]