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 %}