{{ f.severity.value }}
{{ f.title }}
{{ f.check }}
{{ f.detail }}
{% if f.columns %}
{% for c in f.columns[:30] %}{{ c }}{% endfor %}{% if f.columns|length > 30 %}+{{ f.columns|length - 30 }} more{% endif %}
{% endif %}
{% if f.recommendation %}
→ {{ f.recommendation }}
{% endif %}
{% if f.evidence.top_suspects %}
| row | given label | suggested label | P(given) | P(suggested) |
{% for r in f.evidence.top_suspects[:15] %}
| {{ r.row }} | {{ r.given_label }} | {{ r.suggested_label }} |
{{ "%.2f" | format(r.confidence_in_given) }} | {{ "%.2f" | format(r.confidence_in_suggested) }} |
{% endfor %}
{% endif %}
{% endfor %}