mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
13 lines
425 B
Twig
13 lines
425 B
Twig
<div class="list-group">
|
|
{% for group in groups %}
|
|
{% for transaction in group.transactions %}
|
|
<a class="list-group-item" href="{{ route('transactions.show', [transaction.transaction_group_id]) }}">
|
|
{{ transaction.description }}
|
|
<span class="pull-right small">
|
|
X
|
|
</span>
|
|
</a>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</div>
|