{# SPDX-FileCopyrightText: 2025 CERN. SPDX-FileCopyrightText: 2025-2026 KTH Royal Institute of Technology. SPDX-License-Identifier: MIT #} {% import "invenio_checks/requests/severity_level_icons.html" as severity_tpl %} {% import "invenio_checks/requests/_rule_severity.html" as rule_severity_tpl %}
{% for check in checks %} {% for rule_result in check.result.rule_results %} {% if not rule_result.skipped %} {% set rule_severity_level = rule_severity_tpl.rule_severity_level(rule_result) | trim %}
{{ rule_result.rule_message | translate_field }}
{# Rule descriptions can contain HTML to link to a page with more details about the rule. This field is sanitized in the backend with SanitizedHTML. #}
{{ rule_result.rule_description | translate_field | safe }}
{% endif %} {% endfor %} {% endfor %}
{% include 'invenio_checks/requests/help_message.html' %}