Private
Public Access
1
0
Files
rowsandall/rowers/templates/plannedsessionview.html
2018-02-06 10:57:47 +01:00

30 lines
591 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>Session {{ psdict.name.1 }}</h1>
<table class="listtable shortpadded">
{% for header, value in psdict.items %}
{% if header in attrs %}
<tr>
<td><b>{{ value.0 }}</b></td><td>{{ value.1 }}</td>
</tr>
{% endif %}
{% endfor %}
</table>
</div>
<div id="right" class="grid_6 omega">
<p>&nbsp;</p>
</div>
{% endblock %}