Add IBAN to account list.

This commit is contained in:
James Cole
2015-07-05 08:52:35 +02:00
parent 74c50930bd
commit 60bb639351
3 changed files with 5 additions and 2 deletions

View File

@@ -29,4 +29,5 @@ return [
'transfer' => 'Transfer', 'transfer' => 'Transfer',
'type' => 'Type', 'type' => 'Type',
'completed' => 'Completed', 'completed' => 'Completed',
'iban' => 'IBAN',
]; ];

View File

@@ -28,6 +28,6 @@ return [
'deposit' => 'Inkomsten', 'deposit' => 'Inkomsten',
'transfer' => 'Overschrijving', 'transfer' => 'Overschrijving',
'type' => 'Type', 'type' => 'Type',
'completed' => 'Opgeslagen' 'completed' => 'Opgeslagen',
'iban' => 'IBAN',
]; ];

View File

@@ -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 %}