{% extends "welco/base.html" %} {% load i18n static %} {% block bodyargs %}class="mail-dg-table"{% endblock %} {% block breadcrumb %} {{block.super}} {{home_screen_title}} {% endblock %} {% block content %}
{% trans 'Scan Date' %} | {% trans 'User' %} | {% trans 'Category' %} | {% trans 'Related Forms' %} | {% for object in mails %}
---|---|---|---|
{{object.creation_timestamp|date:"d F Y"|lower}} | {{object.contact_name }} | {{object.categories|join:", " }} | {% for association in object.associations.all %}{{association.formdef_name}}{% if not forloop.last %}, {% endif %}{% endfor %} |
{% trans 'There is currently no mail in this list.' %}
{% endif %}