mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-28 14:20:47 +00:00
Actual debit indicator
This commit is contained in:
@@ -14,7 +14,10 @@
|
|||||||
<th>{{ trans('list.interest') }} ({{ trans('list.interest_period') }})</th>
|
<th>{{ trans('list.interest') }} ({{ trans('list.interest_period') }})</th>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<th class="hidden-sm hidden-xs">{{ trans('form.account_number') }}</th>
|
<th class="hidden-sm hidden-xs">{{ trans('form.account_number') }}</th>
|
||||||
<th>{{ trans('list.currentBalance') }}</th>
|
<th style="text-align: right;">{{ trans('list.currentBalance') }}</th>
|
||||||
|
{% if objectType == 'liabilities' %}
|
||||||
|
<th>Left to pay off</th>
|
||||||
|
{% endif %}
|
||||||
<th class="hidden-sm hidden-xs">{{ trans('list.active') }}</th>
|
<th class="hidden-sm hidden-xs">{{ trans('list.active') }}</th>
|
||||||
{# hide last activity to make room for other stuff #}
|
{# hide last activity to make room for other stuff #}
|
||||||
{% if objectType != 'liabilities' %}
|
{% if objectType != 'liabilities' %}
|
||||||
@@ -50,10 +53,8 @@
|
|||||||
</td>
|
</td>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if objectType == 'liabilities' %}
|
{% if objectType == 'liabilities' %}
|
||||||
<td>{{ account.accountTypeString }}</td>
|
<td>{{ account.accountTypeString }}</td>
|
||||||
<td>
|
<td>{{ account.interest }}% ({{ account.interestPeriod|lower }})</td>
|
||||||
{{ account.interest }}% ({{ account.interestPeriod|lower }})
|
|
||||||
</td>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<td class="hidden-sm hidden-xs">{{ account.iban }}{% if account.iban == '' %}{{ accountGetMetaField(account, 'account_number') }}{% endif %}</td>
|
<td class="hidden-sm hidden-xs">{{ account.iban }}{% if account.iban == '' %}{{ accountGetMetaField(account, 'account_number') }}{% endif %}</td>
|
||||||
<td style="text-align: right;">
|
<td style="text-align: right;">
|
||||||
@@ -61,6 +62,11 @@
|
|||||||
{{ formatAmountByAccount(account, account.endBalance) }}
|
{{ formatAmountByAccount(account, account.endBalance) }}
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
|
{% if objectType == 'liabilities' %}
|
||||||
|
<td>
|
||||||
|
Test
|
||||||
|
</td>
|
||||||
|
{% endif %}
|
||||||
<td class="hidden-sm hidden-xs">
|
<td class="hidden-sm hidden-xs">
|
||||||
{% if account.active %}
|
{% if account.active %}
|
||||||
<i class="fa fa-fw fa-check"></i>
|
<i class="fa fa-fw fa-check"></i>
|
||||||
|
|||||||
Reference in New Issue
Block a user