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

Resource Validation Results

Checked {{ result.total }} resource{{ result.total|pluralize }}, found {{ result.total_warnings }} warning{{ result.total_warnings|pluralize }}.

{% if not result.warnings %}

All resources passed validation.

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