{% if message %}
✓ {{ message }}
{% endif %} {% if error %}
✗ {{ error }}
{% endif %}

Profiles

{% if profiles %}
{% for profile in profiles %} {{ profile.name }} {% endfor %}
{% else %}

No profiles configured.

{% endif %}
{% if pipeline_status %}

Pipeline Status

{% for status in pipeline_status %}
{{ status.server }} Replica: {{ status.replica }}
{% if status.state.value == 'running' %} Running {% elif status.state.value == 'success' %} Success {% elif status.state.value == 'failure' %} Failed {% elif status.state.value == 'waiting' %} Waiting {% else %} {{ status.state.value }} {% endif %}
{% if status.steps %}
{% for step in status.steps %}
{% endfor %}
{% endif %}
{% endfor %}

Start Stage

{% else %}

No pipeline status available. Deploy a profile to get started.

{% endif %}