44 lines
886 B
HTML
44 lines
886 B
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 Graph Delete</h1>
|
|
<p>This will permanently delete the graph</p>
|
|
|
|
|
|
<div class="grid_2 alpha">
|
|
<p>
|
|
<a class="button green small" href="/rowers/list-workouts/">Cancel</a>
|
|
</div>
|
|
|
|
<div class="grid_2">
|
|
<p>
|
|
<a class="button red small" href="/rowers/graph/{{ graph.id }}/delete">Delete</a>
|
|
</p>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="images" class="grid_6 omega">
|
|
<p>
|
|
<a href="/{{ graph.filename }}" download="myimage">
|
|
<image src="/{{ graph.filename }}" alt="/{{ graph.filename }}" width="480"/>
|
|
</a>
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|