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

Reference Validation Results

Checked {{ result.total_refs }} reference{{ result.total_refs|pluralize }}, found {{ result.total_errors }} error{{ result.total_errors|pluralize }}.

{% if result.total_errors == 0 %}

All references ok.

{% else %} {% for page_address, details in result.grouped.items %} {% for detail in details %} {% if forloop.first %} {% endif %} {% endfor %} {% endfor %}
Page Detail
{{ page_address }} {{ detail }}
{% endif %} {% endblock %}