Private
Public Access
1
0
Files
rowsandall/rowers/templates/panel_statcharts.html
Sander Roosendaal 3b8c252cd8 workflow view
2018-10-11 16:36:29 +02:00

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>