2018-12-07 22:52:28 +00:00
|
|
|
from django.urls import path, re_path
|
2017-01-26 19:58:33 +00: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 15:25:52 +00:00
|
|
|
app_name = 'account'
|
2014-04-02 00:46:34 +00:00
|
|
|
urlpatterns = [
|
2018-12-07 22:52:28 +00:00
|
|
|
re_path(_(r'^register/$'), view, name='register'),
|
|
|
|
re_path(_(r'^register-without-slash$'), view, name='register-without-slash'),
|
2016-10-20 17:29:04 +00:00
|
|
|
path(_('register-as-path/'), view, name='register-as-path'),
|
2014-04-02 00:46:34 +00:00
|
|
|
]
|