{% extends "base.html" %} {% block title %}My inbox{% endblock %} {% block content %}

My inbox — {{ address }}

Your own mail. Reading here consumes the message (acks it); replying sends back to the sender.

{% for m, unread in items %}
{{ title_of(m) }} {% if unread %}unread{% endif %}
{{ m.created | shortdate }}
from {{ m.from_ }} · {{ m.intent.value }}
{{ m.body | markdown }}
Reply
{% else %}

Your inbox is empty.

{% endfor %} {% endblock %}