blob: 2784d286a1c59936dc14b1f41abb1a94bb3b3e2b (
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'),
]
|