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

18 lines
428 B
Twig
Raw Normal View History

2015-05-01 11:44:49 -05:00
<div class="list-group">
{% for journal in transactions %}
2016-01-02 09:59:36 -06:00
<a class="list-group-item" title="{{ journal.date.formatLocalized(trans('config.month_and_day')) }}" href="{{ route('transactions.show',journal.id) }}">
2015-05-01 11:44:49 -05:00
2015-06-27 01:06:24 -05:00
{{ journal|typeIcon }}
2015-05-01 11:44:49 -05:00
2015-06-27 01:06:24 -05:00
{{ journal.description }}
2015-05-01 11:44:49 -05:00
2015-06-27 01:06:24 -05:00
<span class="pull-right small">
2015-05-01 11:44:49 -05:00
{{ journal|formatJournal }}
</span>
2015-05-01 11:44:49 -05:00
2015-06-27 01:06:24 -05:00
</a>
{% endfor %}
2015-05-01 11:44:49 -05:00
</div>