mirror of
https://github.com/django/django.git
synced 2024-12-30 13:05:45 +00:00
a8b70d251d
Backport of 0ed7d15563
from master
11 lines
340 B
Python
11 lines
340 B
Python
from django.conf.urls import url
|
|
from django.utils.translation import ugettext_lazy as _
|
|
from django.views.generic import TemplateView
|
|
|
|
view = TemplateView.as_view(template_name='dummy.html')
|
|
|
|
urlpatterns = [
|
|
url(_(r'^register/$'), view, name='register'),
|
|
url(_(r'^register-without-slash$'), view, name='register-without-slash'),
|
|
]
|