mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-13 16:00:13 +00:00
Fix #7716
This commit is contained in:
@@ -94,7 +94,6 @@ function updateBudgetedAmount(e) {
|
||||
start: periodStart,
|
||||
end: periodEnd
|
||||
}).done(function (data) {
|
||||
|
||||
input.prop('disabled', false);
|
||||
input.data('limit', data.id);
|
||||
// update amount left.
|
||||
|
@@ -352,31 +352,6 @@
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td><em>{{ 'sum'|_ }}</em></td>
|
||||
<td class="hidden-sm hidden-xs" style="text-align:right;">
|
||||
{% for arr in sums.budgeted %}
|
||||
{{ formatAmountBySymbol(arr.amount, arr.currency_symbol, arr.currency_decimal_places) }}<br/>
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="hidden-sm hidden-xs" style="text-align:right;">
|
||||
{% for arr in sums.spent %}
|
||||
{{ formatAmountBySymbol(arr.amount, arr.currency_symbol, arr.currency_decimal_places) }}
|
||||
({{ formatAmountBySymbol(arr.amount / activeDaysPassed, arr.currency_symbol, arr.currency_decimal_places) }})
|
||||
<br/>
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td style="text-align: right;">
|
||||
{% for arr in sums.left %}
|
||||
{{ formatAmountBySymbol(arr.amount, arr.currency_symbol, arr.currency_decimal_places) }}
|
||||
({{ formatAmountBySymbol(arr.amount / activeDaysLeft, arr.currency_symbol, arr.currency_decimal_places) }})
|
||||
<br/>
|
||||
{% endfor %}
|
||||
</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</div>
|
||||
<div class="box-footer">
|
||||
|
Reference in New Issue
Block a user