{% extends "base.html" %} {% load humanize %} {% load widget_tweaks %} {% block title %} VulnerableCode Package Search {% endblock %} {% block content %} {% include "navbar.html" %}
{% include "package_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 package in page_obj %} {% empty %} {% endfor %}
Package URL Affected by vulnerabilities Fixing vulnerabilities
{{ package.purl }} {{ package.vulnerability_count }} {{ package.patched_vulnerability_count }}
No Package found.
{% if is_paginated %} {% include 'includes/pagination.html' with page_obj=page_obj %} {% endif %}
{% endif %} {% endblock %}