{{ f.check_id }}
{% if f.stig_cat %}CAT {{ f.stig_cat }}{% endif %}
{% if f.interface %}{{ f.interface }}{% endif %}
{{ f.title }}
{% if f.deviation %}
Expected: {{ f.deviation.expected }}
Actual:
{% if f.deviation.location %}
{{ f.deviation.actual }}At: {{ f.deviation.location }}{% if f.deviation.line_numbers %} (lines {{ f.deviation.line_numbers[:5]|join(', ') }}){% endif %}
{% endif %}
{% if f.deviation.patch %}
Patch:
{% for line in f.deviation.patch %}{{ line }}
{% endfor %}