{% extends "base.html" %} {% load humanize %} {% load widget_tweaks %} {% block title %} VulnerableCode Vulnerability Search {% endblock %} {% block content %}
{% include "vulnerability_search_box.html" %}
{% if search %}
{{ page_obj.paginator.count|intcomma }} results
{% if is_paginated %} {% include 'includes/pagination.html' with page_obj=page_obj %} {% endif %}
{% for vulnerability in page_obj %} {% empty %} {% endfor %}
Vulnerability id Aliases Affected packages Fixed by packages
{{ vulnerability.vulnerability_id }} {% for alias in vulnerability.alias %} {% if alias.url %} {{ alias }} {% else %} {{ alias }} {% endif %}
{% endfor %}
{{ vulnerability.vulnerable_package_count }} {{ vulnerability.patched_package_count }}
No vulnerability found.
{% if is_paginated %} {% include 'includes/pagination.html' with page_obj=page_obj %} {% endif %}
{% endif %} {% endblock %}