{% extends "base.html" %} {% block title %}EMB3D Report — Threat Heatmap{% endblock %} {% block content %}

Threat Heatmap

{% for item in heatmap.legend %} {{ item.label }} ({{ item.short }}) {% endfor %}
{% for col in heatmap.columns %}
{{ col.name }}
{% for cell in col.threats %} {% if cell.has_page %} {{ cell.threat_id }} {% else %} {{ cell.threat_id }} {% endif %} {% endfor %}
{% endfor %}
{% endblock %}