{% extends "base.html" %} {% block title %}Queue - circus{% endblock %} {% block auth %} {% if !auth_name.is_empty() %} {{ auth_name }}
{% else %} Login {% endif %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}| Project | Jobset | Job | System | Started | Elapsed | Builder |
|---|---|---|---|---|---|---|
| {% 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.started_at }} | {{ b.elapsed }} | {% match b.builder_name %} {% when Some with (name) %} {{ name }} {% when None %} local {% endmatch %} |
| # | Project | Jobset | Job | System | Priority | Created | {% if permissions.bump_to_front %}Actions | {% endif %}
|---|---|---|---|---|---|---|---|
| {{ b.queue_pos }} | {% 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.priority }} | {{ b.created_at }} | {% if permissions.bump_to_front %}{% endif %} |