45 lines
1.0 KiB
HTML
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 %}
|