{% extends "security_canvas/base.html" %} {% block title %}Security Runbooks — Security Design Canvas{% endblock %} {% block content %}
{% for rb in runbooks %}
{{ rb.title }} {{ rb.severity }}

{{ rb.description }}

NIST: {{ rb.nist_controls|join(', ') }}
{% for phase in rb.phases %} {{ phase.name }} {% endfor %}
Est: {{ rb.estimated_duration }} View Playbook
{% endfor %}
{% endblock %}