2022-06-01 03:20:39 +00:00
|
|
|
{% extends "default.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-10-29 00:38:39 +00:00
|
|
|
<h5 class="my-1">Admin — Lottery Info</h5>
|
2022-06-01 03:20:39 +00:00
|
|
|
<div class="overflow-x-auto"><table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
|
|
|
<th>#</th>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Tickets Held</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for user in participants %}
|
|
|
|
<tr>
|
|
|
|
<td>{{loop.index}}</td>
|
2022-09-05 03:01:06 +00:00
|
|
|
<td>{% include "user_in_table.html" %}</td>
|
2022-06-01 03:20:39 +00:00
|
|
|
<td>{{user.currently_held_lottery_tickets}}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% endblock %}
|