15 lines
355 B
HTML
15 lines
355 B
HTML
{% if statcharts %}
|
|
<h2>Static Charts</h2>
|
|
<ul class="main-content">
|
|
{% for graph in statcharts %}
|
|
<li>
|
|
<a href="/rowers/graph/{{ graph.id }}/">
|
|
<img src="/{{ graph.filename }}"
|
|
onerror="this.src='/static/img/rowingtimer.gif'"
|
|
alt="{{ graph.filename }}" width="180" height="150">
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</ul>
|