~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to templates/messages/outbox.html

  • Committer: Holger Rapp
  • Date: 2009-02-26 22:38:49 UTC
  • Revision ID: sirver@kallisto.local-20090226223849-1563ij0uuw0lz0zu
First version of widelands online help

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
 
 
4
 
{% block title %}
5
 
Outbox - {{ block.super }}
6
 
{% endblock %}
7
 
 
8
3
{% 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 "Sent Messages" %}</h3>
 
4
{% include "messages/inlines/navigation.html" %}
 
5
<h1>{% trans "Sent Messages" %}</h1>
14
6
<table class="messages" cellspacing="1"> 
15
7
    <thead>
16
 
        <tr>
17
 
            <td>{% trans "Recipient" %}</td>
18
 
            <td>{% trans "Subject" %}</td>
19
 
            <td>{% trans "Sent" %}</td>
20
 
            <td>{% trans "Action" %}</td>
21
 
        </tr>
 
8
        <tr><th>{% trans "Recipient" %}</th><th>{% trans "Subject" %}</th><th>{% trans "Sent" %}</th><th>{% trans "Action" %}</th></tr>
22
9
    </thead>
23
10
    <tbody>
24
11
   {% for message in message_list %} 
25
 
   {% include "django_messages/inlines/message_row.html" %}
 
12
   {% include "messages/inlines/message_row.html" %}
26
13
   {% endfor %}
27
14
    </tbody>
28
15
</table>
29
 
</div>
30
16
{% endblock %}