{% extends "layout.html" %} {% block content %}
{% if not pipelines %}

No pipeline groups selected.

Select pipeline groups here.

{% endif %} {% for pipeline in pipelines %} {% if (loop.index - 1) is divisibleby(cols) %}
{% endif %}

{{ pipeline.name }} {{ pipeline.label }} {{ pipeline.changed | time_or_date }} {% if pipeline.name in synced_pipelines.keys() %} | Insights ({{ synced_pipelines[pipeline.name].pipeline_counter }}) {% if not "Success" in pipeline.status and synced_pipelines[pipeline.name].responsible %} {% endif %} {% endif %} {% if not "Success" in pipeline.status and pipeline.name in unsynced_claims.keys() %} {% if unsynced_claims[pipeline.name].responsible and unsynced_claims[pipeline.name].pipeline_counter|string == pipeline.label %} {% endif %} {% endif %}

{% for stage in pipeline.stages %}
{{ stage.name }} {{ stage.counter }} {% for job in stage.jobs %} {{ job.name }} {% endfor %}
{% endfor %} {% for kind in pipeline.messages | sort %}
{{ kind }}: {% for message in pipeline.messages[kind] | sort %} {{ message }} {% endfor %} {% endfor %}
{% if loop.index is divisibleby(cols) or loop.index == pipelines|length %}
{% endif %} {% endfor %}

{% endblock %} {% block scripts %} {% endblock %}