extended submitted statement overview to include iban checks

pull/112/head
mariusrklein 11 months ago committed by marius.klein
parent 6c2cc0b5c2
commit b056ff8881

@ -76,21 +76,29 @@
<p>
{% blocktrans %}The allowance of {{ allowance_per_yl }}€ per person should be paid to:{% endblocktrans %}
<ul>
<table>
<th>
<td>{% trans "IBAN valid" %}</td>
</th>
{% for member in statement.allowance_to.all %}
<li>
{{ member.name }}
</li>
<tr>
<td> {{ member.name }}</td>
<td>{{ member.iban_valid|render_bool }}</td>
</tr>
{% endfor %}
</ul>
</table>
</p>
<p>
{% blocktrans %}The subsidies for night and transportation costs of {{ total_subsidies }}€ should be paid to:{% endblocktrans %}
<ul>
<li>
{{ statement.subsidy_to.name }}
</li>
</ul>
<table>
<th>
<td>{% trans "IBAN valid" %}</td>
</th>
<tr>
<td> {{ statement.subsidy_to.name }}</td>
<td>{{ statement.subsidy_to.iban_valid|render_bool }}</td>
</tr>
</table>
</p>
{% endif %}

Loading…
Cancel
Save