meeat/templates/time_result_fragment.html

9 lines
281 B
HTML
Raw Normal View History

2022-11-07 23:06:51 +01:00
<div id="r-time" hx-swap-oob="true">
2022-12-08 14:12:52 +01:00
Ergebnis ({% for v in voters %}{{ v.short or v.email }}{% if not loop.last %}, {% endif %}{% endfor %}):
2022-11-07 23:06:51 +01:00
{% for r in result %}
<div class="result-item">
2022-12-08 14:12:52 +01:00
{{ loop.index }}. {{ r.display or r.time }}
2022-11-07 23:06:51 +01:00
</div>
{% endfor %}
</div>