shoplist2/templates/list.html
Benjamyn Love 22d030edd6 Implemented users
Changed DB type to MySQL
Cried
2020-01-29 20:46:54 +11:00

27 lines
948 B
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>
{% for x in data["results"] %}
<tbody>
<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>
<button class="btn btn-secondary" type="submit" formaction="/post" formmethod="POST" name="rem" value="{{x[0]}}">Remove</button>
</form>
</td>
</tr>
{% endfor %}
</tbody>
</table>