{% if cluster[0].experimental %}
EXPERIMENTAL CHECK - {{cluster[0].experimental}}
{% endif %}
{{cluster[0].description}}
Check ID: {{ cluster[0].key[1] }}
{% if cluster[0].rationale and not succinct %}
{{ cluster[0].rationale | unwrap | markdown }}
{% endif %}
{% if cluster[0].proposal and not succinct %}
{% for proposal in cluster[0].proposal %}
{% if loop.index == 1 %}
- Original proposal: {{proposal}}
{% else %}
- See also: {{proposal}}
{% endif %}
{% endfor %}
{% endif %}
{% for check in cluster %}
{% if check['result'] == "FATAL" %}
{{ check['result'] | emoticon }}
{% if "filename" is in(check) %}{{ check.filename | basename }}
{% else %}
Family Check
{% endif %}
{% for log in check.logs|sort(attribute="status.weight", reverse=true)%}
-
{{log["status"] | emoticon}} {{log["status"]}}
{{log["message"]["message"] | markdown}}
{% if log["message"]["code"] %}
{{" [code: " ~ log["message"]["code"] ~ "]"}}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% for check in cluster %}
{% if check['result'] != "FATAL" and not check is omitted %}
{{ check['result'] | emoticon }}
{% if "filename" is in(check) %}{{ check.filename | basename }}
{% else %}
Family Check
{% endif %}
{% for log in check.logs|sort(attribute="status.weight", reverse=true)%}
-
{{log["status"] | emoticon}} {{log["status"]}}
{{log["message"]["message"] | markdown}}
{% if log["message"]["code"] %}
{{" [code: " ~ log["message"]["code"] ~ "]"}}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}