{% extends "welco/base.html" %} {% load i18n static %} {% block bodyargs %}class="mail-table mail-table-waiting"{% endblock %} {% block content %} {% if objects %}

{% trans 'Mails waiting for validation' %}

    {% for object in objects %}
  • {{object.creation_timestamp}} {% for association in object.associations.all %}
    {{association.formdef_name}} {% endfor %}
  • {% endfor %}
{% else %}

{% trans 'Mails waiting for validation' %}

{% trans 'There is currently no mail in this list.' %}

{% endif %} {% endblock %}