~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to templates/messages/trash.html

  • Committer: Holger Rapp
  • Date: 2010-01-01 20:08:18 UTC
  • mto: (173.3.2 widelands)
  • mto: This revision was merged to the branch mainline in revision 176.
  • Revision ID: rapp@mrt.uka.de-20100101200818-znihhmyhlx0o33gp
Added diff_match_patch from google, because they do not provide a setup.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% extends "django_messages/base.html" %} 
 
1
{% extends "messages/base.html" %} 
2
2
{% load i18n %} 
3
3
 
4
4
{% block title %}
6
6
{% endblock %}
7
7
 
8
8
{% block content %} 
9
 
{% include "django_messages/inlines/navigation.html" %} 
10
 
<br />
11
 
<br />
12
 
<div class="box_item_model border">
13
 
    <h3 class="title">{% trans "Deleted Messages" %}</h3>
14
 
    <table class="messages" cellspacing="1">
15
 
        <thead>
16
 
            <tr>
17
 
                <td>{% trans "Sender" %}</td>
18
 
                <td>{% trans "Subject" %}</td>
19
 
                <td>{% trans "Date" %}</td>
20
 
                <td>{% trans "Action" %}</td>
21
 
            </tr>
22
 
        </thead>
23
 
        <tbody>
 
9
{% include "messages/inlines/navigation.html" %} 
 
10
<h1>{% trans "Deleted Messages" %}</h1>
 
11
<table class="messages" cellspacing="1">
 
12
    <thead>
 
13
        <tr>
 
14
            <th>{% trans "Sender" %}</th>
 
15
            <th>{% trans "Subject" %}</th>
 
16
            <th>{% trans "Date" %}</th>
 
17
            <th>{% trans "Action" %}</th>
 
18
        </tr>
 
19
    </thead>
 
20
    <tbody>
24
21
{% for message in message_list %} 
25
 
   {% include "django_messages/inlines/message_row.html" %}
 
22
   {% include "messages/inlines/message_row.html" %}
26
23
{% endfor %}
27
 
        </tbody>
28
 
    </table>
29
 
</div>
 
24
    </tbody>
 
25
</table>
30
26
<br />
31
 
<div class="box_item_model border">
32
 
    <div class="info_line show_center errormessage">
33
 
        <br />
34
 
        {% trans "Deleted Messages are removed from the trash at unregular intervals, don't rely on this feature for long-time storage." %}
35
 
        <br />
36
 
        <br />
37
 
    </div>
38
 
</div>
 
27
<p>{% trans "Deleted Messages are removed from the trash at unregular intervals, don't rely on this feature for long-time storage." %}</p>
39
28
{% endblock %}