2018-12-07 17:52:28 -05:00
|
|
|
from django.urls import path, re_path
|
2017-01-26 20:58:33 +01:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2011-06-15 17:29:10 +00:00
|
|
|
from django.views.generic import TemplateView
|
|
|
|
|
|
|
|
view = TemplateView.as_view(template_name='dummy.html')
|
|
|
|
|
2015-05-28 17:25:52 +02:00
|
|
|
app_name = 'account'
|
2014-04-01 20:46:34 -04:00
|
|
|
urlpatterns = [
|
2018-12-07 17:52:28 -05:00
|
|
|
re_path(_(r'^register/$'), view, name='register'),
|
|
|
|
re_path(_(r'^register-without-slash$'), view, name='register-without-slash'),
|
2016-10-20 19:29:04 +02:00
|
|
|
path(_('register-as-path/'), view, name='register-as-path'),
|
2014-04-01 20:46:34 -04:00
|
|
|
]
|