Private
Public Access
1
0

registration form (just copy paste of user registration)

This commit is contained in:
Sander Roosendaal
2019-05-07 09:35:17 +02:00
parent 59e5fd6521
commit 01f108e9c3
6 changed files with 135 additions and 2 deletions

View File

@@ -533,6 +533,7 @@ urlpatterns = [
# re_path(r'^paypaltest', TemplateView.as_view(template_name='paypaltest.html'),name='paypaltest'),
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'),
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'),