mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-03 03:31:50 +02:00
24 lines
649 B
HTML
24 lines
649 B
HTML
{% extends "sidebar_table_layout.html" %}
|
|
|
|
{% block sidebar %}
|
|
<div id="table_overflow">
|
|
{{ balance_table(show_weight=False) }}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
<table id="bill_table" class="split_bills table table-striped">
|
|
<thead><tr><th>{{ _("Who pays?") }}</th><th>{{ _("To whom?") }}</th><th>{{ _("How much?") }}</th></tr></thead>
|
|
<tbody>
|
|
{% for bill in bills %}
|
|
<tr receiver={{bill.receiver.id}}>
|
|
<td>{{ bill.ower }}</td>
|
|
<td>{{ bill.receiver }}</td>
|
|
<td>{{ bill.amount|currency }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
{% endblock %}
|