Revisiting the Code

{% if checklist != 0 %}

Vulnerability Checklist

    {% for listItem in checklist %} {% if listItem['type'] == "T" %}
  • {{ listItem['text'] }}

  • {% elif listItem['type'] == "t" %}
  • {{ listItem['text'] }}
  • {% elif listItem['type'] == "C" %}
  • {{ listItem['text'] }}

  • {% endif %} {% endfor %}
{% endif %}