46 lines
960 B
HTML
46 lines
960 B
HTML
{% extends "base.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}Planned Session{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="grid_12 alpha">
|
|
{% include "planningbuttons.html" %}
|
|
|
|
</div>
|
|
<div id="left" class="grid_6 alpha">
|
|
<h1>Confirm Delete</h1>
|
|
<p>This will permanently delete the planned session</p>
|
|
|
|
|
|
<div class="grid_2 alpha">
|
|
<p>
|
|
<a class="button green small" href="/rowers/sessions/">Cancel</a>
|
|
</div>
|
|
|
|
<div class="grid_2">
|
|
<p>
|
|
<a class="button red small" href="/rowers/sessions/{{ ps.id }}/delete">Delete</a>
|
|
</p>
|
|
</div>
|
|
|
|
</div>
|
|
<div id="right" class="grid_6 omega">
|
|
<h1>Session {{ psdict.name.1 }}</h1>
|
|
<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>
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|