now working with crude confirmation page
This commit is contained in:
34
rowers/templates/workout_bulk_actions.html
Normal file
34
rowers/templates/workout_bulk_actions.html
Normal 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 %}
|
||||||
Reference in New Issue
Block a user