mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-09 07:33:06 -06:00
18 lines
358 B
Twig
18 lines
358 B
Twig
<div class="list-group">
|
|
{% for journal in transactions %}
|
|
|
|
<a class="list-group-item" title="{{journal.date.format('jS M Y')}}" href="{{route('transactions.show',journal.id)}}">
|
|
|
|
{{ journal|typeIcon }}
|
|
|
|
{{ journal.description }}
|
|
|
|
<span class="pull-right small">
|
|
{{ journal|formatJournal }}
|
|
|
|
</span>
|
|
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|