Private
Public Access
1
0
Files
rowsandall/rowers/templates/workflow_snippet.html
Sander Roosendaal 94aa797b82 adding rowerfilters
2019-02-14 11:13:13 +01:00

16 lines
494 B
HTML

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