{# Backend result for apply/skip — rendered as a status panel after the action button is clicked. Expects: action ('apply'|'skip'), bug_id, result (BackendResult), is_live (bool). #}
{% if is_live %}LIVE{% else %}DRY RUN{% endif %} {% if action == 'apply' %}Would apply{% else %}Would skip{% endif %} bug {{ bug_id }}
{% if result.actions %}
    {% for a in result.actions %}
  1. {{ a.kind }} {{ a.description }}
  2. {% endfor %}
{% else %}

(no planned actions)

{% endif %} {% if result.output %}

{{ result.output }}

{% endif %} {% if action == 'apply' and result.ok %}

Queued for apply via Claude — click Process queue in the topbar to drain. The CLI will prompt [y/N] before posting to Bugzilla.

{% endif %}