31 lines
661 B
HTML
31 lines
661 B
HTML
{% extends "newbase.html" %}
|
|
{% load staticfiles %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}Delete Graph Image {% endblock %}
|
|
|
|
{% block main %}
|
|
<ul class="main-content">
|
|
<li class="grid_2">
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
<p>Are you sure you want to delete this chart?</p>
|
|
<p>
|
|
<input class="button red" type="submit" value="Confirm">
|
|
</p>
|
|
</form>
|
|
</li>
|
|
<li class="grid_2">
|
|
<a href="/rowers/graph/{{ object.id }}">
|
|
<image src="/{{ object.filename }}" alt="{{ object.filename }}"/>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
|
|
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% include 'menu_workouts.html' %}
|
|
{% endblock %}
|