{% extends "layout.html" %} {% block top_menu %} {% endblock %} {% block content %}
{{ forms.add_member(member_form) }}
Add a bill {% if bills.count() > 0 %} {% for bill in bills %} {% endfor %}
When?Who paid?For what?OwersHow much?Actions
{{ bill.date }} {{ bill.payer }} {{ bill.what }} {% for ower in bill.owers %}{{ ower.name }} {% endfor %} {{ bill.amount }} ({{ bill.pay_each() }} each) delete
Compute bills

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 %}