{% extends "security_canvas/base.html" %} {% block title %}{{ runbook.title }} — Security Runbooks{% endblock %} {% block content %}
NIST Controls: {{ runbook.nist_controls|join(', ') }}  ·  Duration: {{ runbook.estimated_duration }}  ·  Roles: {{ runbook.required_roles|join(', ') }}
{% for phase in runbook.phases %}

Phase {{ loop.index }}: {{ phase.name }}

Max: {{ phase.max_duration }} {% if phase.automated %}✓ Auto-trigger{% endif %}
    {% for step in phase.steps %}
  1. {{ step }}
  2. {% endfor %}
{% endfor %}
Back to Runbooks
{% endblock %}