38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
{% set ns = namespace() -%}
|
|
|
|
{% include 'head.html' with context %}
|
|
<article>
|
|
<h1>AAC Results: Rankings{% if year %} for {{ year }}{% endif %}</h1>
|
|
{% if results -%}
|
|
{%- set ns.total = 0 -%}
|
|
{%- if 'count' in results -%}
|
|
{%- set ns.total = results['count'] -%}
|
|
{%- endif -%}
|
|
<table class="narrow">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Average Position</th>
|
|
<!--th>Sum of Race Positions</th-->
|
|
<th>Races</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{%- for row in results['rows'] -%}
|
|
<tr>
|
|
<td><span class="label">Name</span> <span><a href="{{ url_for('person', title=row.person|trim|urlescape, year=year, start=None, show=ns.show) }}">{{ row.person|trim|e }}</a></span></td>
|
|
<td><span class="label">Average Position</span> <span>{{ row.score|e }}</span></td>
|
|
<!--td><span class="label">Sum of Race Positions</span> <span>{{ row.positions|e }}</span></td-->
|
|
<td><span class="label">Number of Races</span> <span>{{ row.races|e }}</span></td>
|
|
</tr>
|
|
{%- endfor -%}
|
|
</tbody>
|
|
</table>
|
|
{%- endif %}
|
|
</article>
|
|
<footer>
|
|
{% include 'prevnext.html' with context %}
|
|
</footer>
|
|
</body>
|
|
</html>
|