NDOJ/templates/comments/votes.html

17 lines
319 B
HTML
Raw Normal View History

2020-01-21 06:35:58 +00:00
<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>