mirror of
https://github.com/Hopiu/django.git
synced 2026-03-23 09:20:25 +00:00
8 lines
215 B
Python
8 lines
215 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'^foo/$', view, name='not-prefixed-included-url'),
|
|
]
|