{% set page_title = 'Copy' %}
{% include '_header.html' %}
Copy status
A compact incident snapshot: every status that needs attention, with
just enough of the tree to locate it.
{% if copy_markdown %}
Preview
{{ copy_html }}
{# A no-JavaScript and permission-denied escape hatch. It is real page
content rather than a hidden clipboard staging node, so a user can
always select the exact Markdown by hand. #}
Markdown source
{# JSON encoding protects the script boundary (`<` becomes `\u003c`). The
preview above is already safe Markup from the hardened renderer; this
is the same byte string for ClipboardItem's text/html member. #}
{% else %}
Nothing needs attention
Every reported leaf is OK, so there is no incident snapshot to copy.
{% endif %}
{% include '_page_end.html' %}
{% if copy_markdown %}
{% endif %}