mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Fixed a bug that would leave all amounts at zero. #224
This commit is contained in:
@@ -1,24 +1,17 @@
|
||||
<div class="list-group">
|
||||
{% for journal in transactions %}
|
||||
|
||||
<a class="list-group-item" title="{{ journal.date.formatLocalized(trans('config.month_and_day')) }}"
|
||||
|
||||
{% if journal.isOpeningBalance() %}
|
||||
href="#"
|
||||
{% else %}
|
||||
href="{{ route('transactions.show',journal.id) }}"
|
||||
{% endif %}
|
||||
>
|
||||
|
||||
{{ journal|typeIcon }}
|
||||
|
||||
{{ journal.description }}
|
||||
|
||||
<span class="pull-right small">
|
||||
{{ journal|formatJournal }}
|
||||
|
||||
</span>
|
||||
|
||||
{{ journal|typeIcon }}
|
||||
{{ journal.description }}
|
||||
<span class="pull-right small">
|
||||
{{ journal|formatJournal }}
|
||||
</span>
|
||||
</a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user