Private
Public Access
1
0

adding resample function

This commit is contained in:
Sander Roosendaal
2022-02-14 15:53:35 +01:00
parent be83c14a6c
commit f53770fcde
8 changed files with 138 additions and 19 deletions

View File

@@ -384,6 +384,8 @@ urlpatterns = [
re_path(r'^workout/(?P<id>\b[0-9A-Fa-f]+\b)/stats/$',views.workout_stats_view,name='workout_stats_view'),
re_path(r'^workout/(?P<id>\b[0-9A-Fa-f]+\b)/data/$',views.workout_data_view,
name='workout_data_view'),
re_path(r'^workout/(?P<id>\b[0-9A-Fa-f]+\b)/resample/$',views.workout_resample_view,
name='workout_resample_view'),
re_path(r'^workout/(?P<id>\b[0-9A-Fa-f]+\b)/(?P<column>\w+)/erase/$',views.workout_erase_column_view,
name='workout_erase_column_view'),
re_path(r'^workout/(?P<id>\b[0-9A-Fa-f]+\b)/zeropower-confirm/$',views.remove_power_confirm_view,