1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
from django.conf.urls import url
from django.urls import path
from django.views.generic.base import TemplateView
try:
from registration import views as registration_views # debian
except ModuleNotFoundError:
from django_registration import views as registration_views # pip
from django.contrib.auth import views as auth_views
from ishtar_common import views
urlpatterns = [
url(r'^accounts/activate/complete/$',
TemplateView.as_view(
template_name='registration/activation_complete.html'
),
name='registration_activation_complete'),
# Activation keys get matched by \w+ instead of the more specific
# [a-fA-F0-9]{40} because a bad activation key should still get to
# the view; that way it can return a sensible "invalid key"
# message instead of a confusing 404.
url(r'^accounts/activate/(?P<activation_key>\w+)/$',
registration_views.ActivationView.as_view(),
name='registration_activate'),
url(r'^accounts/register/$',
registration_views.RegistrationView.as_view(),
name='registration_register'),
url(r'^accounts/register/complete/$',
TemplateView.as_view(
template_name='registration/registration_complete.html'
),
name='registration_complete'),
url(r'^accounts/register/closed/$',
TemplateView.as_view(
template_name='registration/registration_closed.html'
),
name='registration_disallowed'),
# url("^accounts/", include('django.contrib.auth.urls')),
path('accounts/login/', views.LoginView.as_view(), name='login'),
path('accounts/logout/', views.LogoutView.as_view(), name='logout'),
path('accounts/password_change/', views.PasswordChangeView.as_view(),
name='password_change'),
path('accounts/password_change/done/', auth_views.PasswordChangeDoneView.as_view(),
name='password_change_done'),
path('accounts/password_reset/', auth_views.PasswordResetView.as_view(), name='password_reset'),
path('accounts/password_reset/done/', auth_views.PasswordResetDoneView.as_view(),
name='password_reset_done'),
path('accounts/reset/<uidb64>/<token>/', views.PasswordResetConfirmView.as_view(),
name='password_reset_confirm'),
path('accounts/reset/done/', auth_views.PasswordResetCompleteView.as_view(),
name='password_reset_complete'),
]
|