{% extends "_layout.html" %} {% block content %}
{{ _('Target abuse group') }}: {%- if not unauth %} {{ item.group.name }} {%- else %} {{ item.group.name }} {%- endif %}
{%- if current_user.is_authenticated and item.parent %}{{ _('Parent summary report') }}: {{ item.parent.label }}
{%- endif %}{{ _('Unprotected access link') }}: {{ item.label }}
{{ _('Report created') }}: {{ babel_format_datetime(item.createtime) }} ({{ _('%(delta)s ago', delta = babel_format_timedelta(current_datetime_utc - item.createtime)) }}) | {{ _('Report window') }}: {{ babel_format_datetime(item.dt_from) }} - {{ babel_format_datetime(item.dt_to) }} ({{ babel_format_timedelta(item.delta) }}) | {{ _('Report mailed') }}: {% if item.flag_mailed %}{{ babel_format_datetime(item.mail_dt) }} ({{ _('%(delta)s ago', delta = babel_format_timedelta(current_datetime_utc - item.mail_dt)) }}){% else %}{{ _('never')}}{% endif %}
| {{ _('Type') }}: | {{ macros_site.render_report_label_type(item, True) }} |
|---|---|
| {{ _('Severity') }}: | {{ macros_site.render_report_label_severity(item, True) }} |
| {{ _('Report window') }}: | {{ babel_format_datetime(item.dt_from) }} - {{ babel_format_datetime(item.dt_to) }} ({{ babel_format_timedelta(item.delta) }}) |
| {{ _('Report delay') }}: | {{ babel_format_timedelta(item.createtime - item.dt_to) }} |
| {{ _('Event count') }}: |
{%- if item.type == 'summary': %}
{%- if item.evcount_thr %}
{%- endif %}
{%- if item.evcount_rlp %}
{%- endif %}
{%- else %}
|
| {{ _('IP address count') }}: | {{ statistics['ips'] | count }} |
| {{ _('Target mail') }}: | {%- if item.flag_mailed %} {% if item.mail_to %}{{ item.mail_to | join(', ') }}, {% endif %}{{ babel_format_datetime(item.mail_dt) }} ({{ _('%(delta)s ago', delta = babel_format_timedelta(current_datetime_utc - item.mail_dt)) }}) {%- else %} {{ _('never')}} {%- endif %} |
| {{ _('Filtering') }}: |
{%- if item.filtering %}
{%- if item.filtering is mapping %}
{%- for subitem in item.filtering | dictsort %}
{{ subitem[0] }} {{ subitem[1] }}{% if not loop.last %} {% endif %} {%- endfor %} {%- else %} {%- for subitem in item.filtering %} {{ subitem[0] }} {{ subitem[1] }}{% if not loop.last %} {% endif %} {%- endfor %} {%- endif %} {%- else %} {{ _('no filters matched')}} {%- endif %} |