{% extends 'pybb/base.html' %} {% load pybb_extras %} {% load i18n %} {% block content %} {% with msg as post %}
{% ifequal pm_mode "inbox" %}
{% trans "Message from" %}
{% else %}
{% trans "Message for" %}
{% endifequal %}
{% if post_user.pybb_profile.avatar %}
{% endif %}
{% if user.is_superuser %}
{% endif %}
#
{% pybb_time post.created %}
{% if user.is_authenticated %}
{% endif %}
|
{{ post.body_html|safe }}
{% if not user.is_authenticated or user.pybb_profile.show_signatures %}
{% if post_user.pybb_profile.signature %}
{{ post_user.pybb_profile.signature|urlize|linebreaks }}
{% endif %}
{% endif %}
|