{% extends "base.html" %} {% block title %}Builds - circus{% endblock %} {% block auth %} {% if !auth_name.is_empty() %} {{ auth_name }}
{% else %} Login {% endif %} {% endblock %} {% block content %}| 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 %} |