{% from "components/ui.html" import pager %} {# A page of messages. ``emails``: the account column, for lists across accounts. Without it, one account's list. ``selectable``: a tick box per message for the form ``batch``. ``open_as="drafts"``: links open the draft editor. #} {% set opens = open_as if open_as is defined else "mail" %} {% set ticks = selectable is defined and selectable %} {% if messages %}
| Select | {% endif %} {% if emails is defined %}Account | {% endif %}From | Subject | Date | |
|---|---|---|---|---|---|
| {% endif %} {% if emails is defined %} | {{ emails.get(m.account_id, m.account_id) }} | {% endif %}{{ m.sender | address }} | {{ m.subject | or_missing }} {{ m.snippet | or_missing }} | {{ m.date | when }} | {% if m.starred %}★{% endif %} {% if m.has_attachments %}📎{% endif %} {% if "$answered" in m.keywords %}↩{% endif %} |