{% extends "layout.jinja" %} {% block content %}

{{ advisory.name }}

{% if advisory.kind == "Security" %} {% set advisory_tag_type = "red" %} {% elif advisory.kind == "Bug Fix" %} {% set advisory_tag_type = "purple" %} {% elif advisory.kind == "Enhancement" %} {% set advisory_tag_type = "teal" %} {% endif %} {{ advisory.kind }} {% if advisory.red_hat_advisory_id %} Mirrored from {% if request.state.settings.serve_rh_advisories %} {{advisory.red_hat_advisory.name }} {% else %} {{ advisory.red_hat_advisory.name }} {% endif %} {% endif %}
Issued at: {{ advisory.published_at.date() }}
Updated at: {{ advisory.updated_at.date() }}

Synopsis

{{ advisory.synopsis }}



Description

{% set description = advisory.description.split("\n") %} {% for line in description %}

{{ line }}

{% endfor %}

Affected products

{% for product in advisory.affected_products %} {{ product.name }} {% endfor %}

Fixes

{% for fix in advisory.fixes %} {{ fix.ticket_id }} {% endfor %}

CVEs

{% for cve in advisory.cves %} {{ cve.cve }} {% endfor %}

Affected packages

{% for product_repo_name, nevras in package_map.items() %}

{{ product_repo_name }}

{% for nevra in nevras %} {{ nevra }} {% endfor %} {% endfor %}
{% endblock %}