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

35 lines
1.2 KiB
Twig
Raw Normal View History

2018-06-25 16:01:45 +02:00
{% include 'emails.header-html' %}
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
{% 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 %}
</p>
{% if journals.count == 1 %}
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
2018-06-26 19:26:10 +02:00
You can find it in your Firefly III installation:<br />
2018-06-25 16:01:45 +02:00
{% for journal in journals %}
2019-07-26 17:48:24 +02:00
<a href="{{ route('transactions.show', journal.id) }}">{{ journal.description }}</a> (AMOUNT TODO)
2018-06-25 16:01:45 +02:00
{% endfor %}
</p>
{% endif %}
{% if journals.count > 1 %}
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
You can find them in your Firefly III installation:
</p>
<ul>
{% for journal in journals %}
2018-06-26 19:26:10 +02:00
<li>
2019-07-26 17:48:24 +02:00
<a href="{{ route('transactions.show', journal.id) }}">{{ journal.description }}</a> (AMOUNT TODO)
2018-06-26 19:26:10 +02:00
</li>
2018-06-25 16:01:45 +02:00
{% endfor %}
</ul>
{% endif %}
{% include 'emails.footer-html' %}