Private
Public Access
1
0
Files
rowsandall/rowers/templates/plannedsessiondeleteconfirm.html
2018-10-15 12:47:36 +02:00

44 lines
943 B
HTML

{% extends "newbase.html" %}
{% load staticfiles %}
{% block title %}Planned Session{% endblock %}
{% block main %}
<h1>Confirm Delete</h1>
<p>This will permanently delete the planned session</p>
<ul class="main-content">
<li class="grid_2">
<p>
<form action="" method="post">
{% csrf_token %}
<p>Are you sure you want to delete <em>{{ object }}</em>?</p>
<input class="button red" type="submit" value="Confirm">
</form>
</p>
</li>
<li class="grid_2">
<h2>Session {{ psdict.name.1 }}</h2>
<table class="listtable shortpadded">
{% for attr in attrs %}
{% for key,value in psdict.items %}
{% if key == attr %}
<tr>
<td><b>{{ value.0 }}</b></td><td>{{ value.1 }}</td>
</tr>
{% endif %}
{% endfor %}
{% endfor %}
</table>
</li>
</ul>
{% endblock %}
{% block sidebar %}
{% include 'menu_plan.html' %}
{% endblock %}