Private
Public Access
1
0

demo of drag/drop and JS to capture the new order

This commit is contained in:
Sander Roosendaal
2022-04-05 12:07:42 +02:00
parent 61884d9a00
commit 5ba43564f8
6 changed files with 153 additions and 2 deletions

View File

@@ -875,6 +875,8 @@ urlpatterns = [
views.rower_create_trainingplan, name='rower_create_trainingplan'),
re_path(r'^plans/$', views.rower_select_instantplan,
name='rower_select_instantplan'),
re_path(r'^plans/stepeditor/$',
views.stepeditor, name='stepeditor'),
re_path(r'^plans/(?P<id>[0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12})/$',
views.rower_view_instantplan, name='rower_view_instantplan'),
re_path(r'^buyplan/(?P<id>\d+)/$', views.buy_trainingplan_view,