51 lines
1.1 KiB
HTML
51 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{% load staticfiles %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}Delete Graph Image {% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="workouts" class="grid_6 alpha">
|
|
|
|
{% if form.errors %}
|
|
<p style="color: red;">
|
|
Please correct the error{{ form.errors|pluralize }} below.
|
|
</p>
|
|
{% endif %}
|
|
|
|
<h1>Confirm Workout Delete</h1>
|
|
This will delete the following workout and all linked graph images:
|
|
|
|
<table width=100%>
|
|
<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>
|
|
|
|
<div class="grid_2 alpha">
|
|
<p>
|
|
<a class="button green small" href="/rowers/dashboard/">Cancel</a>
|
|
</div>
|
|
|
|
<div class="grid_2">
|
|
<p>
|
|
<a class="button red small" href="/rowers/workout/{{ workout.id }}/delete">Delete</a>
|
|
</p>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="images" class="grid_6 omega">
|
|
<p>
|
|
|
|
</b>
|
|
</div>
|
|
|
|
|
|
{% endblock %} |