{# SPDX-License-Identifier: AGPL-3.0-or-later #} {# SPDX-FileCopyrightText: 2026 JWP Consulting GK #} {% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %} {% include "admin/koriander/page/includes/breadcrumbs.html" %} {% endblock %} {% block content %}

{% blocktranslate count refs=result.total_refs %} Checked {{ refs }} reference, {% plural %} Checked {{ refs }} references, {% endblocktranslate %} {% blocktranslate count errors=result.total_errors %} found {{ errors }} error. {% plural %} found {{ errors }} errors. {% endblocktranslate %}

{% if result.total_errors == 0 %}

{% trans "All references ok." %}

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