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

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

urlpatterns = [
    re_path("^nl/foo/", view, name="not-translated"),
]