Details (Vendor - Product - Version)
{% for product_info, cve_data in all_cve_data.items() %}
{{ product_info.vendor }} {{ product_info.product }} {{ product_info.version }} CVE Count: {{ cve_data['cves'] | length }}
{% for cve in cve_data['cves'] %} {% endfor %}
CVE Number Description Severity Remarks
{{ cve.cve_number }} {{ cve.description }} {{ cve.severity }} {{ cve.remarks }}
{% for path in cve_data['paths']%} {% endfor%}
Paths Associated with {{ product_info.product }}-{{ product_info.version }}
{{ path }}
{% endfor %}