{% for report_item in data.report_items %}
CONFIDENTIALITY
TLP
CVSS vector: {{ report_item.attrs.cvss|e }}

DESCRIPTION
{{ report_item.attrs.description|e }}
EXPOSURE DATE
{{ report_item.attrs.exposure_date }}
UPDATE DATE
{{ report_item.attrs.update_date }}
CVE
{% if report_item.attrs.cve %} {% for i in report_item.attrs.cve %}
{{ i|e }}
{% endfor %} {% endif %}
IMPACT
{% if report_item.attrs.impact %} {% for i in report_item.attrs.impact %}
{{ i|e }}
{% endfor %} {% endif %}
IOC
{% if report_item.attrs.ioc %} {% for i in report_item.attrs.ioc %}
{{ i|e }}
{% endfor %} {% endif %}
AFFECTED SYSTEMS
{% if report_item.attrs.affected_systems %} {% for i in report_item.attrs.affected_systems %}
{{ i|e }}
{% endfor %} {% endif %}
RECOMMENDATIONS
{{ report_item.attrs.recommendations }}
LINKS
    {% if report_item.attrs.links %} {% for i in report_item.attrs.links %}
    {{ i|e }}
    {% endfor %} {% endif %}
{% endfor %}