Files
firefly-iii/resources/views/list/journals-tiny.twig

18 lines
599 B
Twig
Raw Normal View History

2015-05-01 18:44:49 +02:00
<div class="list-group">
{% for journal in transactions %}
2016-03-07 21:39:08 +01:00
<a class="list-group-item" title="{{ journal.date.formatLocalized(trans('config.month_and_day')) }}"
2016-03-07 21:39:50 +01:00
{% if journal.isOpeningBalance() %}
2016-03-07 21:39:08 +01:00
href="#"
{% else %}
href="{{ route('transactions.show',journal.id) }}"
{% endif %}
>
{{ journal|typeIcon }}
{{ journal.description }}
<span class="pull-right small">
{{ journal|formatJournal }}
</span>
2015-06-27 08:06:24 +02:00
</a>
{% endfor %}
2015-05-01 18:44:49 +02:00
</div>