{% extends "helfertool/admin.html" %} {% load i18n bootstrap4 icons %} {% block admincontent %}

{% trans "All mails" %}

{% if sent_mails %} {% for mail in sent_mails %} {% endfor %}
{% trans "Subject" %} {% trans "Receiver" %} {% trans "Date" %}
{% if mail.failed %} {% icon "exclamation-triangle" %} {% endif %} {{ mail.subject }}
    {% for tmp in mail.receiver_list %}
  • {{ tmp }}
  • {% endfor %}
{{ mail.date }} {% icon "search" %} {% trans "View" %}
{% else %}

{% trans "No mails were sent (or you are not allowed to see these mails)." %}

{% endif %} {% endblock %}