{# 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/pageresource/includes/breadcrumbs.html" %} {% endblock %} {% block content %}

{% blocktranslate count total=result.total %} Checked {{ total }} resource, {% plural %} Checked {{ total }} resources, {% endblocktranslate %} {% blocktranslate count warnings=result.total_warnings %} found {{ warnings }} warning. {% plural %} found {{ warnings }} warnings. {% endblocktranslate %}

{% if not result.warnings %}

{% trans "All resources passed validation." %}

{% else %} {% for address, page_warnings in result.warnings.items %} {% for warning in page_warnings %} {% if forloop.first %} {% endif %} {% endfor %} {% endfor %}
{% trans "Page" %} {% trans "Warning" %}
{{ address }} {{ warning }}
{% endif %} {% endblock %}