mirror of
https://github.com/django/django.git
synced 2025-02-19 05:45:48 +00:00
10 lines
207 B
Python
10 lines
207 B
Python
from django.conf.urls import url
|
|
from django.views.generic import TemplateView
|
|
|
|
|
|
view = TemplateView.as_view(template_name='dummy.html')
|
|
|
|
urlpatterns = [
|
|
url(r'^nl/foo/', view, name='not-translated'),
|
|
]
|