aurweb/templates/partials/tu/last_votes.html
Kevin Morris 987f9eab3b
fix: link to user account in last votes by tu listing
Signed-off-by: Kevin Morris <kevr@0cost.org>
2022-02-04 18:36:29 -08:00

37 lines
1.1 KiB
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>
<a href="/account/{{ vote.Username }}">
{{ vote.Username }}
</a>
</td>
<td>
<a href="/tu/{{ vote.LastVote }}">
{{ vote.LastVote }}
</a>
</td>
</tr>
{% endfor %}
{% endif %}
</tbody>
</table>
</div>