Private
Public Access
1
0
Files
rowsandall/rowers/templates/plannedsessions_print.html
Sander Roosendaal 328070df52 print view
2018-10-15 18:13:59 +02:00

48 lines
1.1 KiB
HTML

{% extends "newbase.html" %}
{% load staticfiles %}
{% load rowerfilters %}
{% block title %}Planned Sessions{% endblock %}
{% block main %}
<h1>Plan for {{ rower.user.first_name }} {{ rower.user.last_name }}</h1>
{% for ps in plannedsessions %}
<h2><a href="/rowers/sessions/{{ ps.id }}">Session {{ ps.name }}</a></h2>
<table class="listtable shortpadded" width="80%">
<tr>
<th align="left">On or after</th><td>{{ ps.startdate }}</td>
</tr>
<tr>
<th align="left">On or before</th><td>{{ ps.enddate }}</td>
</tr>
<tr>
<th align="left">Session Type</th><td>{{ ps.sessiontype }}</td>
</tr>
<tr>
<th align="left">Session Mode</th><td>{{ ps.sessionmode }}</td>
</tr>
<tr>
<th align="left">Criteria</th><td>{{ ps.criterium }}</td>
</tr>
<tr>
<th align="left">Value</th><td>{{ ps.sessionvalue }}</td>
</tr>
<tr>
<th align="left">Unit</th><td>{{ ps.sessionunit }}</td>
</tr>
<tr>
<th align="left">Comment</th><td>{{ ps.comment|linebreaks }}</td>
</tr>
</table>
{% endfor %}
{% endblock %}
{% block sidebar %}
{% include 'menu_plan.html' %}
{% endblock %}