~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to pybb/templates/pybb/pm/inbox.html

  • Committer: Holger Rapp
  • Date: 2009-02-25 16:55:36 UTC
  • Revision ID: sirver@kallisto.local-20090225165536-3abfhjx8qsgtzyru
- Added my hacked version of pybb. Remerging new versions is very difficult at this point :(

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 "Inbox" %}</h1>
 
8
<ul>
 
9
    {% for msg in messages %}
 
10
    <li>
 
11
        <a href="{% url pybb_show_pm msg.id %}" {% if not msg.read %}class="selected"{% endif %}>{{ msg.subject }}</a>
 
12
        {% trans "from" %}
 
13
        <span class="author"> {{ msg.src_user|pybb_profile_link }} </span>
 
14
 
 
15
        <span class="date">@ {% pybb_time msg.created %}</span>
 
16
    </li>
 
17
    {% endfor %}
 
18
</ul>
 
19
{% endblock %}