{% extends "webmail/base.html" %} {% block title %}ign8mail — Inbox{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% for mb in mailboxes %}
{{ mb.name }} {% if mb.status != 'active' %}{{ mb.status }}{% endif %}
{% if not mb.reachable %}
unreachable
{% elif mb.unread > 0 %}
{{ mb.unread }}
unread
{% else %}
no new mail
{% endif %}
{% empty %}

No mailboxes configured.

{% endfor %}
{% endblock %}