|
|
@ -7,7 +7,6 @@ from bam.forms import HashedEmailPasswordResetForm |
|
|
|
import django.contrib.auth.views as auth_views |
|
|
|
import django.contrib.auth.views as auth_views |
|
|
|
|
|
|
|
|
|
|
|
urlpatterns = [ |
|
|
|
urlpatterns = [ |
|
|
|
path('accounts/profile/', RedirectView.as_view(pattern_name='profile')), |
|
|
|
|
|
|
|
path('', RedirectView.as_view(pattern_name='profile')), |
|
|
|
path('', RedirectView.as_view(pattern_name='profile')), |
|
|
|
path('profile/', ProfileView.as_view(), name='profile'), |
|
|
|
path('profile/', ProfileView.as_view(), name='profile'), |
|
|
|
|
|
|
|
|
|
|
@ -53,8 +52,4 @@ urlpatterns = [ |
|
|
|
template_name='bam/password_reset_complete.html' |
|
|
|
template_name='bam/password_reset_complete.html' |
|
|
|
), |
|
|
|
), |
|
|
|
name='password_reset_complete'), |
|
|
|
name='password_reset_complete'), |
|
|
|
|
|
|
|
|
|
|
|
#path('password_reset_hashed/', |
|
|
|
|
|
|
|
# PasswordResetHashedView.as_view(), |
|
|
|
|
|
|
|
# name='password_reset_hashed'), |
|
|
|
|
|
|
|
] |
|
|
|
] |
|
|
|