husstanden/templates/pages/bills.html

36 lines
640 B
HTML
Raw Normal View History

2019-04-26 06:22:43 +02:00
{% set title = "Bills" %}
{% extends "layout/dash.html" %}
{% block content %}
<div class="container module">
<table class="table">
<thead class="thead-light">
<tr>
<th scope="col">Payment to</th>
<th scope="col">Description</th>
<th scope="col">Sum</th>
<th scope="col">KID</th>
<th scope="col">Date Due</th>
<th scope="col">Payment status</th>
</tr>
</thead>
<tbody>
{% for row in data %}
<tr>
<th>{{ row[0] }}</th>
<td>{{ row[1] }}</td>
<td>{{ row[2] }}</td>
<td>{{ row[3] }}</td>
<td>{{ row[4] }}</td>
<td>{{ row[5] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}