{% for thisResult in errors %}
{% set checkItemMessages = '' %}
{% if thisResult.getLongErrorMessage is empty and thisResult.getItems()|length > 1 %}
{% for checkItem in thisResult.getItems() %}
{% if checkItem.getStatus is same as('warning') %}
{% set checkItemMessages = checkItemMessages ~ checkItem.getComment() %}
{% endif %}
{% endfor %}
{% endif %}
{{ thisResult.getLabel }}
{% endfor %}
{% endif %}
{% if numWarnings %}
{% for thisResult in warnings %}
{% set checkItemMessages = '' %}
{% if thisResult.getLongErrorMessage is empty and thisResult.getItems()|length > 1 %}
{% for checkItem in thisResult.getItems() %}
{% if checkItem.getStatus is same as('warning') %}
{% set checkItemMessages = checkItemMessages ~ checkItem.getComment() %}
{% endif %}
{% endfor %}
{% endif %}