Generated: {{ timestamp }}
{{ overall_score|round|int }}
Overall Score
{% for category, score in category_scores.items() %}
{{ score|round|int }}
{{ category|title }}
{% endfor %}

Issues Found

{{ issue_counts.critical|default(0) }} Critical
{{ issue_counts.warning|default(0) }} Warnings
{{ issue_counts.notice|default(0) }} Notices
{% for severity, issues_list in issues_by_severity.items() %} {% for issue in issues_list %}
{{ issue.category }}
{{ severity|upper }}
{{ issue.message }}
{% if issue.details %}
{{ issue.details|tojson(indent=2) }}
{% endif %}
{% endfor %} {% endfor %}
{% if recommendations %}

Recommendations

    {% for rec in recommendations %}
  1. {{ loop.index }}
    {{ rec }}
  2. {% endfor %}
{% endif %}