{% extends 'Admin/base.html.twig' %} {% block title %} OceanExpert | Messages {% endblock %} {% block stylesheets %} {% endblock %} {% block body %} {% include('navbarlogin.html.twig') %}
Sender |
{{ user.email1 }}
{% if message.sendToSender == 1 %}
(will receive the message too)
{% endif %}
|
|
---|---|---|
Recipient(s) |
{{ data.recipients }} {% if data.recipientCount is defined and data.recipientCount != 0 %} ({{ data.recipientCount }} recipients) {% endif %} [ View Recipient(s) ] |
|
Subject | {{ message.subject }} | |
Message | {{ message.message | raw | nl2br }} | |
Status | {% if message.approved is not null %} {% if message.approved == 0 %} Awaiting Approval {% elseif message.approved == 1 %} Approved: About to be Sent {% elseif message.approved == 2 %} Sent: at {{ message.datequeued | date('H:i:s') ~ " on "~ message.datequeued| date('M d, Y') }} {% elseif message.approved == 3 %} Approval Denied: Message Not Sent {% endif %} {% else %} | {% endif %} |