diff --git a/server/templates/tls_report.html b/server/templates/tls_report.html
index 4548c4e..2fac5a8 100644
--- a/server/templates/tls_report.html
+++ b/server/templates/tls_report.html
@@ -1,8 +1,10 @@
+
TLS Report
+
TLS Report Summary:
Organization: {{ report.organization_name }}
@@ -10,34 +12,37 @@
Contact: {{ report.contact_info }}
Report ID: {{ report.report_id }}
- Policies:
+ Policies:
{% for policy in report.policies %}
- Policy Domain: {{ policy.policy.policy_domain }}
-
- - Policy Type: {{ policy.policy.policy_type }}
- - Policy String: {{ policy.policy.policy_string | join(", ") }}
- - Successful Sessions: {{ policy.summary.total_successful_session_count }}
- - Failed Sessions: {{ policy.summary.total_failure_session_count }}
-
+ Policy Domain: {{ policy.policy.policy_domain }}
+
+ - Policy Type: {{ policy.policy.policy_type }}
+ - Policy String: {{ policy.policy.policy_string | join(", ") }}
+ - Successful Sessions: {{ policy.summary.total_successful_session_count }}
+ - Failed Sessions: {{ policy.summary.total_failure_session_count }}
+
-
- {% for mx_host in policy.policy.mx_host %}
- - Hostname: {{ mx_host.hostname }}, Failures: {{ mx_host.failure_count }}, Result: {{ mx_host.result_type }}
- {% endfor %}
-
+
+ {% for mx_host in policy.policy.mx_host %}
+ - Hostname: {{ mx_host.hostname }}, Failures: {{ mx_host.failure_count }}, Result: {{
+ mx_host.result_type }}
+ {% endfor %}
+
-
- {% for detail in policy.failure_details %}
- - Result: {{ detail.result_type }}, Sending IP: {{ detail.sending_mta_ip }}, Failed Sessions: {{ detail.failed_session_count }}
- {% if detail.failure_reason_code != "" %}
- (Reason: {{ detail.failure_reason_code }})
- {% endif %}
-
- (Receiving IP: {{ detail.receiving_ip }})
- (Receiving MX: {{ detail.receiving_mx_hostname }})
- (Additional Info: {{ detail.additional_info }})
- {% endfor %}
-
+
+ {% for detail in policy.failure_details %}
+ - Result: {{ detail.result_type }}, Sending IP: {{ detail.sending_mta_ip }}, Failed
+ Sessions: {{ detail.failed_session_count }}
+ {% if detail.failure_reason_code != "" %}
+ (Reason: {{ detail.failure_reason_code }})
+ {% endif %}
+
+ (Receiving IP: {{ detail.receiving_ip }})
+ (Receiving MX: {{ detail.receiving_mx_hostname }})
+ (Additional Info: {{ detail.additional_info }})
+ {% endfor %}
+
{% endfor %}
+
\ No newline at end of file