mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
26 lines
765 B
Twig
26 lines
765 B
Twig
{% include 'emails.header-text' %}
|
|
{% if journals.count == 1 %}
|
|
Firefly III has created a transaction for you.
|
|
|
|
{% endif %}
|
|
{% if journals.count > 1 %}
|
|
Firefly III has created {{ journals.count }} transactions for you.
|
|
{% endif %}
|
|
{% if journals.count == 1 %}
|
|
You can find in in your Firefly III installation:
|
|
|
|
{% for journal in journals %}
|
|
{{ journal.description }}: {{ route('transactions.show', journal.id) }} ({{ journal|journalTotalAmountPlain }})
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if journals.count > 1 %}
|
|
You can find them in your Firefly III installation:
|
|
|
|
{% for journal in journals %}
|
|
- {{ journal.description }}: {{ route('transactions.show', journal.id) }} ({{ journal|journalTotalAmountPlain }})
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% include 'emails.footer-text' %}
|