{% extends "base.html" %} {% load humanize %} {% load widget_tweaks %} {% load static %} {% load url_filters %} {% load utils %} {% block content %}
{{ page_obj.paginator.count|intcomma }} results
{% if is_paginated %} {% include 'includes/pagination.html' with page_obj=page_obj %} {% endif %}
{% for advisory in page_obj %} {% empty %} {% endfor %}
Advisory Source Date Published Summary Fixed in package version
{{advisory.avid }}
{% if advisory.alias|length != 0 %} Aliases: {% endif %}
{% for alias in advisory.alias %} {% if alias.url %} {{ alias }}
{% else %} {{ alias }}
{% endif %} {% endfor %} {% if advisory.secondary|length != 0 %}

Supporting advisories are listed below the primary advisory.

{% for secondary in advisory.secondary %} {{secondary.avid }} {% endfor %} {% endif %}
{{advisory.url}} {{advisory.date_published}} {{ advisory.summary }} {% with fixed=fixed_package_details|get_item:advisory.avid %} {% if fixed %} {% for item in fixed %}
{{ item.pkg.version }}
{% if item.pkg.is_vulnerable %} Vulnerable {% else %} Not vulnerable {% endif %}
{% endfor %} {% else %} There are no reported fixed by versions. {% endif %} {% endwith %}
This package is not known to be subject of any advisories.
{% if is_paginated %} {% include 'includes/pagination.html' with page_obj=page_obj %} {% endif %} {% endblock %}