1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% extends "messages/base.html" %}
{% load i18n %}
{% block content %}
{% include "messages/inlines/navigation.html" %}
<h1>{% trans "Sent Messages" %}</h1>
<table class="messages" cellspacing="1">
<thead>
<tr><th>{% trans "Recipient" %}</th><th>{% trans "Subject" %}</th><th>{% trans "Sent" %}</th><th>{% trans "Action" %}</th></tr>
</thead>
<tbody>
{% for message in message_list %}
{% include "messages/inlines/message_row.html" %}
{% endfor %}
</tbody>
</table>
{% endblock %}
|