Rebase on master to take Note and Report functionnalities

This commit is contained in:
Gregory Trullemans 2022-09-30 10:29:48 +02:00
parent 3d7eed9c7c
commit 727e845571
1 changed files with 15 additions and 0 deletions

View File

@ -49,6 +49,21 @@ urlpatterns = [
path(r"note/details/<int:note_id>/", views.note_details, name="note_details"),
path(r"chrono/details/<int:chrono_id>/add/", views.jump_chrono_values_create_or_update, name="jump_chrono_values_create_or_update"),
path(
r"chrono/add_jump_chrono_value/",
views.add_jump_chrono_value,
name="add_jump_chrono_value"
),
path(
r"chrono/remove_jump_chrono_value/",
views.remove_jump_chrono_value,
name="remove_jump_chrono_value"
),
path(r"chrono/detailed_score_for_date_range/<int:gymnast_id>/<int:routine_type>/<str:date_begin>/<str:date_end>/", views.average_jump_chrono_details_between_two_date, name="average_jump_chrono_details_between_two_date"),
>>>>>>> 31a996c (CTRL+Z)
path(r"learnedskill/add/", views.learnedskill_create_or_update, name="learnedskill_create"),
path(
r"learnedskill/add/<int:gymnast_id>/",