{% extends "admin/base_site.html" %} {% load i18n admin_urls static %} {% load overview_extras %} {% block extrahead %} {{ block.super }} {{ media }} {% endblock %} {% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} admin-view {% endblock %} {% block breadcrumbs %}
{% endblock %} {% block content %}
| {% trans "Amount" %} | {% trans "Covered by association" %} | {% for bill in statement.bill_set.all %}|
| {{bill.short_description}} | {{ bill.amount }}€. | {{ bill.costs_covered|render_bool }} |
{% blocktrans %}The total amount is {{total_bills}} €.{% endblocktrans %}
{% if statement.excursion %}{% blocktrans %}This excursion featured {{ staff_count }} youth leader(s), each costing{% endblocktrans %}
{% blocktrans %}In total this is {{ total_per_yl }}€ times {{ staff_count }}, giving {{ total_staff }}€.{% endblocktrans %}
{% blocktrans %}The allowance of {{ allowance_per_yl }}€ per person should be paid to:{% endblocktrans %}
{% blocktrans %}The subsidies for night and transportation costs of {{ total_subsidies }}€ should be paid to:{% endblocktrans %}
{% blocktrans %}This results in a total amount of {{ total }}€{% endblocktrans %}
| {% trans "Amount" %} | {% trans "Reference" %} | {% trans "Ledger" %} | {% for transaction in statement.transaction_set.all %}|
| {{ transaction.member }} | {{ transaction.amount }}€ | {{ transaction.reference }} | {{ transaction.ledger }} |
{% blocktrans %}The current transactions do not reflect all costs in this statement. Please fix the following issues:{% endblocktrans %}
| {% trans "Currently receiving" %} | {% trans "Actual costs" %} | {% trans "Difference" %} | {% for issue in transaction_issues %}|
| {{ issue.member }} | {{ issue.current }}€ | {{ issue.target }}€ | {{ issue.difference }}€ |