aurweb/templates/partials/tu/last_votes.html
Kevin Morris ab1479925b
fix: tu last votes listing vote id
Signed-off-by: Kevin Morris <kevr@0cost.org>
2022-02-04 18:02:33 -08:00

33 lines
943 B
HTML

<div class="box">
<h2>{% trans %}{{ title }}{% endtrans %}</h2>
<table class="results last-votes">
<thead>
<th>{{ "User" | tr }}</th>
<th>{{ "Last vote" | tr }}</th>
</thead>
<tbody>
{% if not votes %}
<tr>
<td align="center" colspan="0">
{{ "No results found." | tr }}
</td>
<td></td>
</tr>
{% else %}
{% for vote in votes %}
<tr>
<td>{{ vote.Username }}</td>
<td>
<a href="/tu/{{ vote.LastVote }}">
{{ vote.LastVote }}
</a>
</td>
</tr>
{% endfor %}
{% endif %}
</tbody>
</table>
</div>