{% extends "base.html" %} {% load humanize %} {% load widget_tweaks %} {% load static %} {% load show_cvss %} {% load url_filters %} {% block title %} VulnerableCode Advisory Package Details - {{ advisoryv2.advisory_id }} {% endblock %} {% block content %} {% if advisoryv2 %}
Vulnerable and Fixing Package details for Advisory: {{ advisoryv2.advisory_id }}
{% for impact in advisoryv2.impacted_packages.all %} {% empty %} {% endfor %}
Affected Fixed by
{% for package in impact.affecting_packages.all %} {{ package.purl }}
{% endfor %}
{% for package in impact.fixed_by_packages.all %} {{ package.purl }}
{% empty %} There are no reported fixed by versions. {% endfor %}
This vulnerability is not known to affect any packages.
{% endif %} {% endblock %}