12 lines
345 B
HTML
12 lines
345 B
HTML
{% if statcharts %}
|
|
<h2>Static Charts</h2>
|
|
{% for graph in statcharts %}
|
|
<div id="thumb-container" class="grid_3 alpha">
|
|
<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>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|