{% extends 'base.html' %} {% load i18n %} {% block body_class%}{%if pie_data%} class="tundra"{%endif%}{%endblock body_class%} {% block headers %}{% endblock headers %} {% block scripts %}{%if pie_data %} {%endif%}{% endblock scripts %} {% block submenu %}   {% endblock submenu %} {% block title %} {% blocktrans %}Reports - {{report_title}}{% endblocktrans %} {% endblock title %} {% block heading %} {% blocktrans %}Reports - {{report_title}}{% endblocktrans %} {% endblock heading %} {% block content %}
#
{% trans "Address" %}
{% trans "Count" %}
{% trans "Volume" %}
 
{% load messages_extras %} {% for item in top_items %}
{{ forloop.counter }}.
  {% if item.from_address %}{{item.from_address|tds_trunc:42}}{%endif%} {% if item.from_domain %}{{item.from_domain}}{%endif%} {% if item.to_address %}{{item.to_address|tds_trunc:42}}{%endif%} {% if item.to_domain %}{{item.to_domain}}{%endif%}
{{ item.num_count }}
{{ item.total_size|filesizeformat }}
{% endfor %}
{% trans "Filters have been applied :" %} {% for f in active_filters %}  x "{{ f.filter_field }} {{f.filter_by}} {{f.filter_value}}" {% if not forloop.last %},{% endif %} {% endfor %}
{% include "reports/filter.form.html" %} {% endblock content %}