{% extends "base.html" %} {% load humanize %} {% load widget_tweaks %} {% load static %} {% load show_cvss %} {% load url_filters %} {% block title %} VulnerableCode Vulnerability Package Details - {{ vulnerability.vulnerability_id }} {% endblock %} {% block content %} {% if vulnerability %}
Vulnerable and Fixing Package details for Vulnerability: {{ vulnerability.vulnerability_id }}
{% for package in affected_packages %} {% empty %} {% endfor %}
Affected Fixed by
{{ package.purl }} {% for match in all_affected_fixed_by_matches %} {% if match.affected_package == package %} {% if match.matched_fixed_by_packages|length > 0 %} {% for pkg in match.matched_fixed_by_packages %} {{ pkg }}
{% endfor %} {% else %} There are no reported fixed by versions. {% endif %} {% endif %} {% endfor %}
This vulnerability is not known to affect any packages.
{% endif %} {% endblock %}