From a7ea2d88d182e2d9d53c90b037fa1a069e51e2ec Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Fri, 19 Jan 2024 16:14:13 +0100 Subject: [PATCH] now working with crude confirmation page --- rowers/templates/workout_bulk_actions.html | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 rowers/templates/workout_bulk_actions.html diff --git a/rowers/templates/workout_bulk_actions.html b/rowers/templates/workout_bulk_actions.html new file mode 100644 index 00000000..5fc56d17 --- /dev/null +++ b/rowers/templates/workout_bulk_actions.html @@ -0,0 +1,34 @@ +{% extends "newbase.html" %} +{% load static %} +{% load rowerfilters %} + +{% block title %}Change Workout {% endblock %} + +{% block main %} +

Bulk Actions

+
    +
  • +

    + Edit and confirm the action you want to perform on the following workouts: +

    + {% for workout in workouts %} +

    {{ workout }}

    + {% endfor %} +

    + Action: {{ action }} +

    +
  • +
  • +
    + {% csrf_token %} + +
    +
  • +
+ + +{% endblock %} + +{% block sidebar %} +{% include 'menu_workout.html' %} +{% endblock %}