mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Small cosmetic changes.
This commit is contained in:
parent
060b031272
commit
b875eb31d2
@ -35,7 +35,7 @@
|
||||
<td data-value="{{ entry.amount_max }}">
|
||||
{{ entry.amount_max|formatAmount }}
|
||||
</td>
|
||||
{% if entry.lastFoundMatch %}
|
||||
{% if not entry.lastFoundMatch.isFuture %}
|
||||
<td class="hidden-sm hidden-xs" data-value="{{ entry.lastFoundMatch.format('U') }}">
|
||||
{{ entry.lastFoundMatch.formatLocalized(monthAndDayFormat) }}
|
||||
</td>
|
||||
@ -45,7 +45,7 @@
|
||||
</td>
|
||||
{% endif %}
|
||||
|
||||
{% if entry.nextExpectedMatch %}
|
||||
{% if entry.nextExpectedMatch.isFuture %}
|
||||
<td class="hidden-sm hidden-xs" data-value="{{ entry.nextExpectedMatch.format('U') }}">
|
||||
{{ entry.nextExpectedMatch.formatLocalized(monthAndDayFormat) }}
|
||||
</td>
|
||||
|
@ -47,7 +47,9 @@
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
{{ budgetLine.getLeft|formatAmount }}
|
||||
{% if(budgetLine.getOverspent == 0) %}
|
||||
{{ budgetLine.getLeft|formatAmount }}
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
{% if budgetLine.getOverspent != 0 %}
|
||||
|
Loading…
Reference in New Issue
Block a user