9
{% include "django_messages/inlines/navigation.html" %}
12
<div class="box_item_model border">
13
<h3 class="title">{% trans "Deleted Messages" %}</h3>
14
<table class="messages" cellspacing="1">
17
<td>{% trans "Sender" %}</td>
18
<td>{% trans "Subject" %}</td>
19
<td>{% trans "Date" %}</td>
20
<td>{% trans "Action" %}</td>
9
{% include "messages/inlines/navigation.html" %}
10
<h1>{% trans "Deleted Messages" %}</h1>
11
<table class="messages" cellspacing="1">
14
<th>{% trans "Sender" %}</th>
15
<th>{% trans "Subject" %}</th>
16
<th>{% trans "Date" %}</th>
17
<th>{% trans "Action" %}</th>
24
21
{% for message in message_list %}
25
{% include "django_messages/inlines/message_row.html" %}
22
{% include "messages/inlines/message_row.html" %}
31
<div class="box_item_model border">
32
<div class="info_line show_center errormessage">
34
{% trans "Deleted Messages are removed from the trash at unregular intervals, don't rely on this feature for long-time storage." %}
27
<p>{% trans "Deleted Messages are removed from the trash at unregular intervals, don't rely on this feature for long-time storage." %}</p>