~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to templates/pybb/pm/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 'pybb/base.html' %}
 
2
{% load i18n %}
 
3
{% load pybb_extras %}
 
4
 
 
5
{% block content %}
 
6
{% include "pybb/pm/common.html" %}
 
7
<h1>{% trans "Outbox" %}</h1>
 
8
<ul>
 
9
    {% for msg in messages %}
 
10
    <li>
 
11
        <a href="{% url pybb_show_pm msg.id %}">{{ msg.subject }}</a> {% trans "to" %}
 
12
        <span class="author"> {{ msg.dst_user|pybb_profile_link }} </span>
 
13
        <span class="date">@ {% pybb_time msg.created %}</span>
 
14
    </li>
 
15
    {% endfor %}
 
16
</ul>
 
17
{% endblock %}