{% extends "base.html" %} {% load scoped_tags %} {% block title %}Deployment {{ deploy.id|truncate_id:12 }}{% endblock %} {% block page_title %}Deployment Detail{% endblock %} {% block page_subtitle %}Gate-checked graduation{% endblock %} {% block layer_indicator %}L10 Deployments{% endblock %} {% block content %} {# Deployment header #}

Deployment {{ deploy.id|truncate_id:12 }}

{% include "components/_state_badge.html" with state=deploy.state %}

Target: {{ deploy.target_name|default:"Unknown" }} · Deployed by: {{ deploy.deployed_by|truncate_id }} · Created: {{ deploy.deployed_at|format_dt }}

{% if deploy.object_id %}
Object: {{ deploy.object_id|truncate_id:16 }}
{% endif %}
{# Gate checks #}

Gate Checks

{% if gates %} {% for gate in gates %} {% endfor %}
Gate Type Result Details Checked At
{{ gate.gate_type|default:"—" }} {% if gate.passed %} Passed {% else %} Failed {% endif %} {{ gate.details_json|default:"—" }} {{ gate.checked_at|format_dt }}
{% else %}
{% include "components/_empty_state.html" with title="No gate checks" message="No gates have been evaluated for this deployment yet." %}
{% endif %}
{% endblock %}