Private
Public Access
1
0

first version actual/executed chart for plan

This commit is contained in:
Sander Roosendaal
2019-10-05 14:35:06 +02:00
parent 65db7ee6d8
commit c12a2c8fe3
6 changed files with 299 additions and 97 deletions

View File

@@ -587,6 +587,10 @@ urlpatterns = [
name='rower_trainingplan_view'),
re_path(r'^plan/(?P<id>\d+)/macro/(?P<thismacroid>\d+)/user/(?P<userid>\d+)/$',views.rower_trainingplan_view,
name='rower_trainingplan_view'),
re_path(r'^plan/(?P<id>\d+)/execution/$',views.rower_trainingplan_execution_view,
name='rower_trainingplan_execution_view'),
re_path(r'^plan/(?P<id>\d+)/execution/user/(?P<userid>\d+)/$',views.rower_trainingplan_execution_view,
name='rower_trainingplan_execution_view'),
re_path(r'^macrocycle/(?P<pk>\d+)/$',login_required(
views.TrainingMacroCycleUpdate.as_view()),
name='macrocycle_update_view'),