Private
Public Access
1
0

now working with crude confirmation page

This commit is contained in:
2024-01-19 16:14:13 +01:00
parent abd2355893
commit a7ea2d88d1

View File

@@ -0,0 +1,34 @@
{% extends "newbase.html" %}
{% load static %}
{% load rowerfilters %}
{% block title %}Change Workout {% endblock %}
{% block main %}
<h1>Bulk Actions</h1>
<ul class="main-content">
<li class="grid_2">
<p>
Edit and confirm the action you want to perform on the following workouts:
</p>
{% for workout in workouts %}
<p>{{ workout }}</p>
{% endfor %}
<p>
Action: {{ action }}
</p>
</li>
<li class="grid_2">
<form action="" method="post">
{% csrf_token %}
<input type="submit" value="Confirm">
</form>
</li>
</ul>
{% endblock %}
{% block sidebar %}
{% include 'menu_workout.html' %}
{% endblock %}