Private
Public Access
1
0

the ajax is working

This commit is contained in:
Sander Roosendaal
2022-04-05 17:50:01 +02:00
parent 22d5ee5e3f
commit a1e907a090
3 changed files with 88 additions and 4 deletions

View File

@@ -877,6 +877,10 @@ urlpatterns = [
name='rower_select_instantplan'),
re_path(r'^plans/stepeditor/$',
views.stepeditor, name='stepeditor'),
re_path(r'^plans/stepeditor/(?P<id>\d+)/$',
views.stepeditor, name='stepeditor'),
re_path(r'^plans/stepadder/(?P<id>\d+)/$',
views.stepadder, name='stepadder'),
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,