{% extends "base.html" %} {% block title %}Builds - circus{% endblock %} {% block auth %} {% if !auth_name.is_empty() %} {{ auth_name }}
{% else %} Login {% endif %} {% endblock %} {% block content %}

Builds

{% if builds.is_empty() %}
No builds match filters
Try adjusting the filters above or wait for builds to be queued.
{% else %}
{% for b in builds %} {% endfor %}
Build Project Jobset Job System Status Duration Created Log
#{{ b.id_short }} {% match b.project_id %} {% when Some with (project_id) %} {{ b.project_name }} {% when None %} - {% endmatch %} {% match b.jobset_id %} {% when Some with (jobset_id) %} {{ b.jobset_name }} {% when None %} - {% endmatch %} {{ b.job_name }} {{ b.system }} {{ b.status_text }} {{ b.duration }} {{ b.created_at }} {% if b.has_log %} log {% else %} - {% endif %}
{% if total_pages > 1 %} {% endif %} {% endif %} {% endblock %}