mirror of
https://github.com/django/django.git
synced 2024-11-18 23:44:22 +00:00
7dd0ceba2e
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17547 bcc190cf-cafb-0310-a4f2-bffc1f526a37
11 lines
256 B
Python
11 lines
256 B
Python
from django.conf.urls import url
|
|
from django.conf.urls import patterns
|
|
from django.views.generic import TemplateView
|
|
|
|
|
|
view = TemplateView.as_view(template_name='dummy.html')
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^nl/foo/', view, name='not-translated'),
|
|
)
|