{% extends '__layout__.html' %} {% block title %}Messages{% endblock %} {% block head %} {% endblock %} {% block content %}

{%if isOutgoing:%}Outgoing {%endif%}Messages

{% if not isOutgoing: %} Click here to see your outgoing messages {%else%} Click here to see your incoming messages {%endif%}

Do not send any personal or sensitive information about yourself! A staff member will never ask for your password or email.

{% for message in UserMessages %}
{%if not isOutgoing %}{{message.sender.username}}{%else%}{{message.recipient.username}}{%endif%}
{%if not isOutgoing %}{{message.sender.username}}{%else%}{{message.recipient.username}}{%endif%}

{{message.created.strftime("%b %d, %Y %I:%M %p")}} UTC

{{message.subject}} - {{message.content}}

{%endfor%} {% if len(UserMessages.items) == 0: %}
No results found
{%endif%}
Previous

Page {{UserMessages.page}} of {{UserMessages.pages}}

Next
{% endblock %}