use the alias object directly

The alias object returns its email address when it's called as a string.
Therefor it's better to call the object directly.
This commit is contained in:
Andreas Zweili 2020-01-01 20:23:07 +01:00
parent f06a92f0c1
commit 8063d2ab9a

View File

@ -52,7 +52,7 @@
{% for alias in mail_alias %}
<tr>
<td>
{{ alias.email_address }}
{{ alias }}
</td>
</tr>
{% endfor %}