mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-03 12:47:17 -06:00
18 lines
428 B
Twig
18 lines
428 B
Twig
<div class="list-group">
|
|
{% for journal in transactions %}
|
|
|
|
<a class="list-group-item" title="{{ journal.date.formatLocalized(trans('config.month_and_day')) }}" href="{{ route('transactions.show',journal.id) }}">
|
|
|
|
{{ journal|typeIcon }}
|
|
|
|
{{ journal.description }}
|
|
|
|
<span class="pull-right small">
|
|
{{ journal|formatJournal }}
|
|
|
|
</span>
|
|
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|