{% extends "base.html" %} {% block title %}Mail ยท {{ APP_NAME }}{% endblock %} {% block heading %}Mail{% endblock %} {% block subheading %}
{{ role }} of {{ "every account you may read" if not chosen else chosen | length ~ " account(s)" }}, newest first
{% endblock %} {% block content %}
{% for account in accounts %} {% endfor %}
{% include "partials/mail_search.html" %}
{% for failure in incomplete %}
{{ emails.get(failure.account_id, failure.account_id) }}: {{ failure.message }}
{% endfor %}
{% include "partials/message_list.html" %}
{% endblock %}