{% extends "modal.html" %} {% load i18n %} {% block header %} {% trans "Message Log" %} {% endblock header %} {% block body %} {% for m in messages %} {% empty %} {% endfor %}
{{ m.sent_at|date:"SHORT_DATETIME_FORMAT" }} {{ m.recipient }} {{ m.status }}
{% trans "No messages to display" %}
{% endblock body %}