{% extends "base.html" %} {% block headers %} {% if not list_all %} {% else %} {% endif %} {% endblock headers %} {% block submenu %} {% endblock submenu %} {% block title %} {% if list_all %} {% load pagination_heading %}{% pagination_heading %} {% else %} Showing the 50 most recent messages {% endif %} {% endblock title %} {% block heading %} {% if list_all %} {% load pagination_heading %}{% pagination_heading %}{%if active_filters %}(Filters have been applied){%endif%} {% else %} Showing the 50 most recent messages [updated every 60 sec's Not updating enable javascript] {% endif %} {% endblock heading %} {% block content %} {% if list_all %} {% load sorter %} {% sorter "timestamp" "Date/Time" %} {% sorter "from_address" "From" %} {% sorter "to_address" "To" %} {% sorter "subject" "Subject" %} {% sorter "size" "Size" %} {% sorter "sascore" "Score" %} {% else %} {% endif %} {% if list_all %} {% endif %} {% if object_list %} {% load messages_extras %} {% for message in object_list %} {% endfor %} {% else %} {% endif %}
#Status# Date/Time From To Subject Size Score Status
{% if active_filters %} Filters have been applied : {% for f in active_filters %} "{{f.filter_field}} {{f.filter_by}} {{f.filter_value}}"{% if not forloop.last %},{% endif %} {% endfor %} {% endif %}
{% if is_paginated %}{% load paginator %}{% paginator 3 %}{% endif %}
[  ] {{ message.timestamp }} {{ message.from_address|tds_trunc:30 }} {{ message.to_address|tds_nl_commas|linebreaksbr }} {{ message.subject|striptags|escape|tds_trunc:45 }} {{ message.size|filesizeformat }} {{ message.sascore }} {% if message.isspam and not message.spamblacklisted and not message.virusinfected and not message.nameinfected and not message.otherinfected %}Spam{% endif %} {% if message.spamblacklisted %}BL{%endif%} {% if message.virusinfected or message.nameinfected or message.otherinfected %}Infected{% endif %} {% if not message.isspam and not message.virusinfected and not message.nameinfected and not message.otherinfected and not message.spamwhitelisted %}Clean{% endif %} {% if message.spamwhitelisted %}WL{%endif%}
No records returned
{% endblock content %}