NDOJ/templates/comments/votes.html
2023-01-27 17:11:10 -06:00

17 lines
No EOL
295 B
HTML

<h2>Votes</h2>
<table class="table">
<thead>
<tr>
<th>Voter</th>
<th>Score</th>
</tr>
</thead>
<tbody>
{% for vote in votes %}
<tr>
<td>{{ link_user(vote.voter) }}</td>
<td>{{ vote.score }}</td>
</tr>
{% endfor %}
</tbody>
</table>