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