{% if error %} Back to Search {% else %}

Job Summary: {{ job_number }}

{{ aggregated.total_files }}
Files Checked
{{ aggregated.total_checks }}
Total Checks
{{ aggregated.summary.passed }}
Passed
{{ aggregated.summary.error }}
Errors
{{ aggregated.summary.warning }}
Warnings
{{ aggregated.summary.skipped }}
Skipped
{% if aggregated.files_with_errors %}
Files with Errors ({{ aggregated.files_with_errors|length }})
    {% for file in aggregated.files_with_errors %}
  • {{ file.filename }} View Details
    {{ file.error_count }} error(s)
  • {% endfor %}
{% endif %}
Export Combined Report as HTML {% if aggregated.files_with_errors %} Export Error Reports Only {% endif %}
{% for report in reports %}

{% if report.error %}
Error: {{ report.error }}
{% else %} {% for check in report.checks %}
{{ check.status_text }} {{ check.name }}
{% if check.description %}

{{ check.description }}

{% endif %}
{% if check.error_message %}
Error: {{ check.error_message }}
{% endif %} {% if check.results %}
Results:
    {% for key, value in check.results.items() %}
  • {{ key }}: {% if value is mapping %}
      {% for k, v in value.items() %}
    • {{ k }}: {{ v }}
    • {% endfor %}
    {% else %} {{ value }} {% endif %}
  • {% endfor %}
{% endif %}
{% endfor %} {% endif %}
{% endfor %}
{% for report in reports %}

{% endfor %}
{% endif %}