Experimental code for #628

This commit is contained in:
James Cole
2017-04-08 09:00:37 +02:00
parent 01ae278f09
commit 4fd33f19c6
2 changed files with 8 additions and 1 deletions

View File

@@ -109,6 +109,12 @@
<td style="width:33%;">{{ 'earned'|_ }}</td>
<td style="text-align: right;">{{ period.earned|formatAmount }}</td>
</tr>
{% if period.earned != 0 and period.spent != 0 %}
<tr>
<td style="width:33%;">{{ 'sum'|_ }}</td>
<td style="text-align: right;">{{ period.sum|formatAmount }}</td>
</tr>
{% endif %}
<tr>
<td style="width:33%;">{{ 'transferred'|_ }}</td>
<td style="text-align: right;" class="text-info">{{ period.transferred|formatAmountPlain }}</td>