rDrama/files/templates/admin/lottery.html

24 lines
539 B
HTML

{% extends "default.html" %}
{% block pagetitle %}Lottery Participants{% endblock %}
{% block content %}
<h5 class="my-1">Admin — Lottery Participants</h5>
<div class="overflow-x-auto">
<table>
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>Tickets Held</th>
</tr>
</thead>
{% for user in participants %}
<tr>
<td>{{loop.index}}</td>
<td>{% include "user_in_table.html" %}</td>
<td>{{user.currently_held_lottery_tickets}}</td>
</tr>
{% endfor %}
</table>
</div>
{% endblock %}