{% extends "layout.html" %} {% block content %} {% if bills.count() > 0 %}
When ? | Who paid? | for what ? | Owers | How much ? | Actions |
---|---|---|---|---|---|
{{ bill.date }} | {{ bill.payer }} | {{ bill.what }} | {% for ower in bill.owers %}{{ ower.name }} {% endfor %} | {{ bill.amount }} ({{ bill.pay_each() }} each) | delete |
Periodically (probably at the end of each month, you can compute the balance of each people, in order to reset all the debts. You can also let this "as-is" and try to find a good balance, that's up to you
{% else %}Nothing to list yet. You probably want to add a bill ?
{% endif %} {% endblock %}