1
{% extends 'pybb/base.html' %}
6
{% include "pybb/pm/common.html" %}
7
<h1>{% trans "Inbox" %}</h1>
9
{% for msg in messages %}
11
<a href="{% url pybb_show_pm msg.id %}" {% if not msg.read %}class="selected"{% endif %}>{{ msg.subject }}</a>
13
<span class="author"> {{ msg.src_user|pybb_profile_link }} </span>
15
<span class="date">@ {% pybb_time msg.created %}</span>