{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block content %}

🔍 SEO Report

{% if target %}

{{ target }}

{% endif %}
{% if status != "done" %}

This audit is {{ status or "unknown" }}. Refresh once it finishes, or start a new one from SEO Diagnostics.

{% else %}
{{ counts.get('pass', 0) }} pass {{ counts.get('warn', 0) }} warn {{ counts.get('fail', 0) }} fail {{ counts.get('info', 0) }} info

{{ page_count }} page(s) audited {% if generated_at %}· {{ generated_at[:10] }}{% endif %}

{% for cat, meta in categories.items() %}
{{ cat|replace('_', ' ')|title }} {% if meta.score is not none %}{{ meta.score }}{% endif %}
{% endfor %}
{% for cat, meta in categories.items() %}

{{ cat|replace('_', ' ')|title }}

{% for check in checks if check.category == cat %}
{{ check.status }}
{{ check.title }}{% if check.url and page_count > 1 %} {{ check.url }}{% endif %} {% if check.value %}{{ check.value }}{% endif %} {% if check.recommendation %}{{ check.recommendation }}{% endif %}
{{ check.severity }}
{% endfor %}
{% endfor %}
{% endif %}
{% endblock %}