{# SPDX-License-Identifier: AGPL-3.0-or-later #} {# SPDX-FileCopyrightText: 2026 JWP Consulting GK #} {% extends "admin/base_site.html" %} {% block title %}Validate Meta Tags{% endblock %} {% block content %}

Meta Tag Validation Results

Checked {{ result.total_pages }} page{{ result.total_pages|pluralize }}, found {{ result.total_errors }} error{{ result.total_errors|pluralize }}. Skipped {{ result.skipped }} draft page{{ result.skipped|pluralize }}.

{% if result.total_errors == 0 %}

All pages passed meta tag validation.

{% else %} {% for url, errors in result.grouped.items %} {% for error in errors %} {% if forloop.first %} {% endif %} {% endfor %} {% endfor %}
URL Tag Status
{{ url }} {{ error.tag }} {{ error.status }}
{% endif %} {% endblock %}