{% extends "base.html" %} {% import "macros/ui.html" as m %} {% block title %}{{ ws_name }} ยท Workflows{% endblock %} {% block nav_workspaces %}btn-active{% endblock %} {% block content %} {{ m::ws_tabs(ws_name=ws_name, active=ws_active_tab, ws_envs=ws_envs, ws_has_clusters=ws_has_clusters, ws_has_workflows=ws_has_workflows, current_env=current_env) }} {% if not has_root %}
| # | Step | Targets | Depends On | Condition | On Error |
|---|---|---|---|---|---|
| {{ step_i }} | {{ step.id }} | {% for t in step.targets %} {{ t }} {% endfor %} | {% if step.depends_on %} {% for dep in step.depends_on %} {{ dep }} {% endfor %} {% else %} โ {% endif %} | {% if step.condition %}{{ step.condition }}{% else %}โ{% endif %} | {% if step.on_error == "Stop" %} stop {% elif step.on_error == "Continue" %} continue {% elif step.on_error %} {{ step.on_error }} {% else %} โ {% endif %} |
No steps defined.
{% endif %}