{% extends "base.html" %}
{% block title %}Scenarios - Threat Model{% endblock %}
{% block content %}
{% for scenario in model.scenarios %}
{% set slug = scenario.name.replace(' ', '_') %}
{{ scenario.findings | length }} findings
{{ scenario.name }}
{% if scenario.url %}({{ scenario.file }}){% endif %}
{% if scenario.description %}{{ scenario.description }}{% endif %}
Data Flow Diagram
{% with src=scenario.dfd %}{% include "includes/dfd_diagram.html" %}{% endwith %}
Sequence Diagram
{% with src=scenario.mermaid %}{% include "includes/mermaid_diagram.html" %}{% endwith %}