Expand report email.

This commit is contained in:
James Cole
2018-06-26 19:26:10 +02:00
parent 5d01955133
commit 49de4f2200
6 changed files with 53 additions and 15 deletions

View File

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

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.description }}: {{ route('transactions.show', journal.id) }} ({{ journal|journalTotalAmountPlain }})
{% 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.description }}: {{ route('transactions.show', journal.id) }} ({{ journal|journalTotalAmountPlain }})
{% endfor %}
{% endif %}