Private
Public Access
1
0
Files
rowsandall/rowers/templates/flexthumbnails.html
Sander Roosendaal 80cdd24913 fine tuning headers
2017-10-13 14:30:16 +02:00

15 lines
434 B
HTML

{% if charts %}
<h2>Flex Charts</h2>
{% for chart in charts %}
<div class="grid_3 alpha">
<big>{{ forloop.counter }}</big>
<div class="grid_3 tooltip">
<a href="/rowers/workout/{{ workout.id }}/flexchart?favoritechart={{ forloop.counter |add:"-1" }}">
{{ chart.div | safe }}
</a>
<span class="tooltiptext">{{ chart.notes }}</span>
</div>
</div>
{% endfor %}
{% endif %}