mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 02:26:58 +00:00
Fix IBAN selection.
This commit is contained in:
@@ -32,6 +32,7 @@
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% for account in data.accounts %}
|
{% for account in data.accounts %}
|
||||||
|
{% set currentIban = 'not-iban' %}
|
||||||
<tr>
|
<tr>
|
||||||
<td style="background:{{ account.settings.color }};"></td>
|
<td style="background:{{ account.settings.color }};"></td>
|
||||||
<td>
|
<td>
|
||||||
@@ -39,6 +40,7 @@
|
|||||||
{% for alias in account.aliases %}
|
{% for alias in account.aliases %}
|
||||||
{% if alias.type == 'IBAN' %}
|
{% if alias.type == 'IBAN' %}
|
||||||
{{ alias.name }}: {{ alias.value }}
|
{{ alias.name }}: {{ alias.value }}
|
||||||
|
{% set currentIban = alias.value %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</td>
|
</td>
|
||||||
|
Reference in New Issue
Block a user