From c2b8235b0e3506d0d36ac626c5df84edd7c58740 Mon Sep 17 00:00:00 2001 From: Tomasz Kramkowski Date: Wed, 12 Apr 2017 11:44:39 +0200 Subject: dmarcstats --- templates/record/index.html | 96 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 templates/record/index.html (limited to 'templates/record') diff --git a/templates/record/index.html b/templates/record/index.html new file mode 100644 index 0000000..ace1995 --- /dev/null +++ b/templates/record/index.html @@ -0,0 +1,96 @@ +{% extends "layout.html" %} +{% block title %}Record{% endblock %} +{% block content %} + +

Record

+
+
+

Record Details

+
+
Source IP
{{ record.row_source_ip|fqdn }}
+
Count
{{ record.row_count }}
+
+

Policy Evaluated

+
+
Disposition
{{ record.row_pol_disposition }}
+
DKIM
+ + {{ record.row_pol_dkim }} + +
+
SPF
+ + {{ record.row_pol_spf }} + +
+
+ {% if reasons %} +

Reasons

+ + + + + + {% for item in reasons %} + + + + + {% endfor %} +
TypeComment
{{ item['type'] }}{{ item['comment'] }}
+ {% endif %} +
+
+

Identifiers

+
+
Envelope To
{{ record.ids_envelope_to }}
+
Header From
{{ record.ids_header_from }}
+
+
+
+ +
+ {% if resdkim %} +
+

DKIM Results

+ + + + + + + + {% for item in resdkim %} + + + + + + + {% endfor %} +
DomainSelectorResultHuman Result
{{ item['domain'] }}{{ item['selector'] }}{{ item['result'] }}{{ item['human_result'] }}
+
+ {% endif %} + +
+

SPF Results

+ + + + + + {% for item in resspf %} + + + + + {% endfor %} +
DomainResult
{{ item['domain'] }}{{ item['result'] }}
+ {% endblock %} +
+
-- cgit v1.2.3-54-g00ecf