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

Loading…
Cancel
Save