NDOJ/templates/comments/votes.html

17 lines
295 B
HTML
Raw Normal View History

2020-01-21 06:35:58 +00:00
<h2>Votes</h2>
<table class="table">
2023-01-27 23:11:10 +00:00
<thead>
2020-01-21 06:35:58 +00:00
<tr>
2023-01-27 23:11:10 +00:00
<th>Voter</th>
<th>Score</th>
2020-01-21 06:35:58 +00:00
</tr>
2023-01-27 23:11:10 +00:00
</thead>
<tbody>
2020-01-21 06:35:58 +00:00
{% for vote in votes %}
2023-01-27 23:11:10 +00:00
<tr>
<td>{{ link_user(vote.voter) }}</td>
<td>{{ vote.score }}</td>
</tr>
2020-01-21 06:35:58 +00:00
{% endfor %}
2023-01-27 23:11:10 +00:00
</tbody>
2020-01-21 06:35:58 +00:00
</table>