{% extends "base.html" %} {% block title %}{{ doc.threat_id }} — {{ doc.threat_name }}{% endblock %} {% block content %}

{{ doc.threat_id }} — {{ doc.threat_name }}

AI Model{{ doc.ai_model }}
Commit{{ doc.head_commit }}
Updated{{ doc.updated_at }}

Properties & Mitigations

{% for pid, prop_entry in doc.properties.items() %}
{{ prop_entry.property_id }} — {{ prop_entry.property_name }} {% if prop_entry.mitigation_info %} {% for m in prop_entry.mitigation_info %} {% endfor %}
Mitigation File Applied
{{ m.mitigation_id }} {{ m.file_name }} {% if m.is_applied %} Yes {% else %} No {% endif %}
{{ m.explanation }}
{% else %}

No mitigation analysis available for this property.

{% endif %}
{% endfor %} {% if not doc.properties %}

No property analysis available for this threat.

{% endif %} {% endblock %}