mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 09:52:20 +00:00
Add IBAN to account list.
This commit is contained in:
@@ -29,4 +29,5 @@ return [
|
|||||||
'transfer' => 'Transfer',
|
'transfer' => 'Transfer',
|
||||||
'type' => 'Type',
|
'type' => 'Type',
|
||||||
'completed' => 'Completed',
|
'completed' => 'Completed',
|
||||||
|
'iban' => 'IBAN',
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -28,6 +28,6 @@ return [
|
|||||||
'deposit' => 'Inkomsten',
|
'deposit' => 'Inkomsten',
|
||||||
'transfer' => 'Overschrijving',
|
'transfer' => 'Overschrijving',
|
||||||
'type' => 'Type',
|
'type' => 'Type',
|
||||||
'completed' => 'Opgeslagen'
|
'completed' => 'Opgeslagen',
|
||||||
|
'iban' => 'IBAN',
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
{% if what == 'asset' %}
|
{% if what == 'asset' %}
|
||||||
<th class="hidden-sm hidden-xs">{{ trans('list.role') }}</th>
|
<th class="hidden-sm hidden-xs">{{ trans('list.role') }}</th>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
<th>{{ trans('list.iban') }}</th>
|
||||||
<th>{{ trans('list.currentBalance') }}</th>
|
<th>{{ trans('list.currentBalance') }}</th>
|
||||||
<th class="hidden-sm hidden-xs">{{ trans('list.active') }}</th>
|
<th class="hidden-sm hidden-xs">{{ trans('list.active') }}</th>
|
||||||
<th class="hidden-sm hidden-xs">{{ trans('list.lastActivity') }}</th>
|
<th class="hidden-sm hidden-xs">{{ trans('list.lastActivity') }}</th>
|
||||||
@@ -31,6 +32,7 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
</td>
|
</td>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
<td>{{ account.iban }}</td>
|
||||||
<td data-value="{{ account|balance }}">{{ account|balance|formatAmount }}</td>
|
<td data-value="{{ account|balance }}">{{ account|balance|formatAmount }}</td>
|
||||||
<td class="hidden-sm hidden-xs" data-value="{{ account.active }}">
|
<td class="hidden-sm hidden-xs" data-value="{{ account.active }}">
|
||||||
{% if account.active %}
|
{% if account.active %}
|
||||||
|
|||||||
Reference in New Issue
Block a user