{% if group_by_target and history_runs %} {# --- Grouped by target view --- #} {% set ns = namespace(groups={}) %} {% for run in history_runs %} {% set key = run.target_name or "No Target" %} {% if key not in ns.groups %} {% set _ = ns.groups.update({key: {"target_name": run.target_name, "target_id": run.target_id, "runs": []}}) %} {% endif %} {% set _ = ns.groups[key]["runs"].append(run) %} {% endfor %} {% for group_key, group in ns.groups.items() %}
No runs yet. Launch a workflow to get started.