Files
firefly-iii/resources/views/v1/emails/report-new-journals-text.twig

26 lines
713 B
Twig
Raw Normal View History

2018-06-25 16:01:45 +02:00
{% 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 %}
2019-07-26 17:48:24 +02:00
{{ journal.description }}: {{ route('transactions.show', journal.id) }} (AMOUNT TODO)
2018-06-25 16:01:45 +02:00
{% endfor %}
{% endif %}
{% if journals.count > 1 %}
You can find them in your Firefly III installation:
{% for journal in journals %}
2019-07-26 17:48:24 +02:00
- {{ journal.description }}: {{ route('transactions.show', journal.id) }} (AMOUNT TODO)
2018-06-25 16:01:45 +02:00
{% endfor %}
{% endif %}
{% include 'emails.footer-text' %}