{% extends "base.html" %} {% block title %}{{ message.subject }} - {{ config.BBS_NAME }}{% endblock %} {% block content %}

Message

{{ message.subject }}

From: {{ message.sender.username }}

To: {{ message.recipient.username }}

Date: {{ message.created_at.strftime('%Y-%m-%d %H:%M') }}


{% set msg_type = 'pm' %}{% set msg_id = message.id %} {% include '_vote_buttons.html' %}
{{ message.content | msgbody }}
{% if message.sender and message.sender.signature %}
--
{{ message.sender.signature }}
{% endif %}
{% if message.recipient_id == current_user.id %} Reply Quote Reply
Back to Inbox {% else %} Back to Sent {% endif %}
{% if conversation and conversation | length > 1 %}
Conversation with {{ other.username if other else '?' }} ({{ conversation | length }} messages)
{% endif %} {% endblock %}