{% if finding.type == "text" %}
{{ finding.title }}
{% if finding.body %}
{{ finding.body | markdown }}
{% endif %} {% if finding.context %}
{{ finding.context }}
{% endif %}
{% elif finding.type == "triage" %}
{{ finding.title }}
{% if finding.body %}
{{ finding.body | markdown }}
{% endif %} {% if finding.severity or finding.confidence or finding.category %}
{% if finding.location %}{{ finding.location.file }}{% if finding.location.line %}:{{ finding.location.line }}{% endif %} | {% endif %} Severity: {{ finding.severity }} | Confidence: {{ finding.confidence }} | Category: {{ finding.category }}
{% elif finding.location %}
{{ finding.location.file }}{% if finding.location.line %}:{{ finding.location.line }}{% endif %}
{% endif %}
Complexity:
{% if finding.options %}
Suggested approaches:
{% for option in finding.options %} {% endfor %}
{% endif %}
{% elif finding.type == "evaluation" %}
{{ finding.title }}
{% if finding.body %}
{{ finding.body | markdown }}
{% endif %} {% for c in finding.criteria %} {% endfor %}
CriterionRatingJustification
{{ c.name }} {{ c.rating }} {{ c.justification }}
{% if finding.litmus_tests %} {% for lt in finding.litmus_tests %} {% endfor %}
Litmus TestResult
{{ lt.name }}{{ lt.result }}
{% endif %} {% if finding.warnings %} {% for w in finding.warnings %} {% endfor %}
Warning SignFound?Details
{{ w.name }} {% if w.found %}Yes{% else %}No{% endif %} {{ w.details }}
{% endif %}
Informational — no response needed
{% endif %}