{% extends 'psu_base.html' %} {% load base_taglib %} {%block title%}{%app_name%} - Email Console{%endblock%} {% block pagecontent %}
    Search Hints {%fa fa-angle-double-down onclick="$(this).parent().addClass('hidden');$('#search-hints').removeClass('hidden');"%}

Emails

{%sortable_th column="date_created" heading="Date"%} {%sortable_th column="initiator"%} {%sortable_th column="subject"%} {%sortable_th column="to"%} {%sortable_th column="cc"%} {%sortable_th column="bcc"%} {%sortable_th column="url"%} {% for aa in app_emails%} {% endfor %}
{%fa fa-envelope-o title="Message status"%}
{%if aa.status == 'S'%} {%fa fa-envelope class="text-success" title="Message was successfully sent"%} {%else%} {%fa fa-envelope class="text-danger" title="Message was not sent"%} {%endif%} {{aa.date_created|date:'d-M-Y'|upper}}
{{aa.date_created|date:'g:i A'|lower}}
{{aa.initiator}} {{aa.subject}} {%for ii in aa.get_to_list%}{{ii}}
{%endfor%}
{%for ii in aa.get_cc_list%}{{ii}}
{%endfor%}
{%for ii in aa.get_bcc_list%}{{ii}}
{%endfor%}
{{aa.url}}
{%pagination app_emails%} {% endblock %}