Private
Public Access
1
0
Files
rowsandall/rowers/templates/workout_erase_column.html
Sander Roosendaal 196548fdcc staticfiles to static
2021-04-14 10:00:14 +02:00

45 lines
1.0 KiB
HTML

{% extends "newbase.html" %}
{% load static %}
{% load rowerfilters %}
{% block title %}Workout Data{% endblock %}
{% block main %}
<h1>Erase {{ column }} for {{ workout.name }}</h1>
<ul class="main-content">
<li class="grid_4">
<p>
This will erase column {{ column }} from the following workout:
</p>
<table width=100%>
<tr>
<th>Name:</th><td>{{ workout.name }}</td>
</tr><tr>
<th>Date:</th><td>{{ workout.date }}</td>
</tr><tr>
<th>Time:</th><td>{{ workout.starttime }}</td>
</tr><tr>
<th>Distance:</th><td>{{ workout.distance }}m</td>
</tr><tr>
<th>Duration:</th><td>{{ workout.duration |durationprint:"%H:%M:%S.%f" }}</td>
</tr>
</table>
<p>
The data cannot be recovered. If you are sure, please confirm.
</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 %}