Migrated all code to group collector.

This commit is contained in:
James Cole
2019-05-31 13:35:33 +02:00
parent eb6329e556
commit e15c35de64
31 changed files with 1540 additions and 1671 deletions

View File

@@ -13,7 +13,7 @@
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
You can find it in your Firefly III installation:<br />
{% for journal in journals %}
<a href="{{ route('transactions.show', journal.id) }}">{{ journal.description }}</a> ({{ journal|journalTotalAmount }})
<a href="{{ route('transactions.show', journal.id) }}">{{ journal.description }}</a> (TODO)
{% endfor %}
</p>
{% endif %}
@@ -25,7 +25,7 @@
<ul>
{% for journal in journals %}
<li>
<a href="{{ route('transactions.show', journal.id) }}">{{ journal.description }}</a> ({{ journal|journalTotalAmount }})
<a href="{{ route('transactions.show', journal.id) }}">{{ journal.description }}</a> (TODO)
</li>
{% endfor %}
</ul>

View File

@@ -10,7 +10,7 @@ Firefly III has created {{ journals.count }} transactions for you.
You can find in in your Firefly III installation:
{% for journal in journals %}
{{ journal.description }}: {{ route('transactions.show', journal.id) }} ({{ journal|journalTotalAmountPlain }})
{{ journal.description }}: {{ route('transactions.show', journal.id) }} (TODO)
{% endfor %}
{% endif %}
@@ -18,7 +18,7 @@ You can find in in your Firefly III installation:
You can find them in your Firefly III installation:
{% for journal in journals %}
- {{ journal.description }}: {{ route('transactions.show', journal.id) }} ({{ journal|journalTotalAmountPlain }})
- {{ journal.description }}: {{ route('transactions.show', journal.id) }} (TODO)
{% endfor %}
{% endif %}