meeat/templates/time_result_fragment.html

11 lines
319 B
HTML
Raw Permalink Normal View History

2022-11-07 23:06:51 +01:00
<div id="r-time" hx-swap-oob="true">
2024-10-06 13:37:30 +02:00
<p>Ergebnis ({% for v in voters %}{{ v.short or v.email }}{% if not loop.last %}, {% endif %}{% endfor %}):
<ol class="result-items">
2022-11-07 23:06:51 +01:00
{% for r in result %}
2024-10-06 13:37:30 +02:00
<li class="result-item">
{{ r.display or r.time }} ({{r.preference}})
</li>
2022-11-07 23:06:51 +01:00
{% endfor %}
2024-10-06 13:37:30 +02:00
</ol>
2022-11-07 23:06:51 +01:00
</div>