Private
Public Access
1
0

email confirmation for new user registration - still need coach

This commit is contained in:
Sander Roosendaal
2021-03-31 08:52:55 +02:00
parent 849bf49cd4
commit 51b085001d
7 changed files with 370 additions and 18 deletions

View File

@@ -729,6 +729,7 @@ urlpatterns = [
re_path(r'^legal', TemplateView.as_view(template_name='legal.html'),name='legal'),
re_path(r'^register/$',views.rower_register_view,name='rower_register_view'),
re_path(r'^coachregister/$',views.freecoach_register_view,name='freecoach_register_view'),
path('activate/<uidb64>/<token>/',views.useractivate, name='useractivate'),
re_path(r'^register/thankyou/$', TemplateView.as_view(template_name='registerthankyou.html'), name='registerthankyou'),
re_path(r'^workout/(?P<id>\b[0-9A-Fa-f]+\b)/workflow/$',views.workout_workflow_view,
name='workout_workflow_view'),