33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
<table class="table table-striped table-dark table-hover">
|
|
<thead class="">
|
|
<tr>
|
|
<th scope="col">Item</th>
|
|
<th scope="col">Requester</th>
|
|
<th scope="col">Gottem?</th>
|
|
<th scope="col">Remove</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for x in data["results"] %}
|
|
<tr scope="row" id="row-{{x[0]}}">
|
|
<td>{{x[1]}}</td>
|
|
<td>{{x[3].title()}}</td>
|
|
<td> {% if x[2] == 0 %}
|
|
<form><button class="btn btn-secondary" type="submit" formaction="/post" formmethod="POST" name="got"
|
|
value="{{x[0]}}">No</button></form>
|
|
{% else %}
|
|
<form><button class="btn btn-secondary" type="submit" formaction="/post" formmethod="POST" name="ungot"
|
|
value="{{x[0]}}">Yes</button></form>
|
|
{% endif %}</td>
|
|
<td>
|
|
<form>
|
|
{% if data["session"]["username"] == x[3] %}
|
|
<button class="btn btn-secondary" type="submit" formaction="/post" formmethod="POST" name="rem"
|
|
value="{{x[0]}}">Remove</button>
|
|
{% endif %}
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table> |