mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-10 23:45:48 -06:00
This should fix #677
This commit is contained in:
parent
5a0be7d2ad
commit
8549c7c81b
@ -8,7 +8,7 @@
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% set sum = 0 %}
|
{% set sum = 0 %}
|
||||||
{% for id, category in report %}
|
{% for index, category in report %}
|
||||||
{% set sum = sum + category.spent %}
|
{% set sum = sum + category.spent %}
|
||||||
{% if loop.index > listLength %}
|
{% if loop.index > listLength %}
|
||||||
<tr class="overListLength">
|
<tr class="overListLength">
|
||||||
@ -16,12 +16,12 @@
|
|||||||
<tr>
|
<tr>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<td>
|
<td>
|
||||||
<a href="{{ route('categories.show',id) }}">{{ category.name }}</a>
|
<a href="{{ route('categories.show', category.id) }}">{{ category.name }}</a>
|
||||||
</td>
|
</td>
|
||||||
<td style="text-align: right;">{{ category.spent|formatAmount }}</td>
|
<td style="text-align: right;">{{ category.spent|formatAmount }}</td>
|
||||||
<td style="width:20px;">
|
<td style="width:20px;">
|
||||||
<i class="fa fa-fw fa-info-circle text-muted firefly-info-button"
|
<i class="fa fa-fw fa-info-circle text-muted firefly-info-button"
|
||||||
data-location="category-entry" data-category-id="{{ id }}"
|
data-location="category-entry" data-category-id="{{ category.id }}"
|
||||||
></i>
|
></i>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
Loading…
Reference in New Issue
Block a user