Private
Public Access
1
0
Files
rowsandall/rowers/templates/teamstats.html
Sander Roosendaal 1509bc7ade fixed initials
2018-11-12 20:49:23 +01:00

33 lines
1.0 KiB
HTML

{% extends "newbase.html" %}
{% block title %}Team {% endblock %}
{% block main %}
<h1>{{ team.name }} Stats</h1>
<p>
Links to the cumulative statistics pages for your team's members
</p>
<table width="90%" class="listtable shortpadded">
<tbody>
{% for u in theusers %}
<tr>
<td>{{ u.first_name }} {{ u.last_name }}</td>
<td><a href="/rowers/ote-bests/user/{{ u.id }}">Ranking Pieces</a></td>
<td><a href="/rowers/flexall/user/{{ u.id }}">Stroke Analysis</a></td>
<td><a href="/rowers/histo/user/{{ u.id }}">Power Histogram</a></td>
<td><a href="/rowers/cumstats/user/{{ u.id }}">Stats</a></td>
<td><a href="/rowers/user-boxplot-select/user/{{ u.id }}/">Box Chart</a></td>
<td><a href="/rowers/otw-bests/user/{{ u.id }}">OTW Ranking Pieces</a></td>
<td><a href="/rowers/user-multiflex-select/user/{{ u.id }}/">Trend Flex</a></td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}
{% block sidebar %}
{% include 'menu_teams.html' %}
{% endblock %}