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

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

{% if not isOutgoing: %} View outgoing messages {%else%} View incoming messages {%endif%}

Do not share personal or sensitive information. 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 %}