{% if summary.ok %}{{ summary.ok }} ok{% endif %}
{% if summary.failed %}{{ summary.failed|length }} failed{% endif %}
{% if summary.skipped_frozen %}{{ summary.skipped_frozen }} frozen{% endif %}
{% if summary.missing %}{{ summary.missing|length }} missing{% endif %}
{% if summary.failed %}
View failures ({{ summary.failed|length }})
{% for f in summary.failed %}
{{ f.key }} — {{ f.error }}
{% endfor %}
{% endif %}
{% if summary.missing %}
View missing ({{ summary.missing|length }})
{% for m in summary.missing %}
{{ m.key }} — {{ m.reason }}
{% endfor %}
{% endif %}