{% extends "layout.html" %} {% block sidebar %}{% include "cupboard/sidebar.html" %}{% endblock %} {% from "run_util.html" import display_result_code %} {% block page_title %}Queue{% endblock %} {% block body %}
Name | Number of entries |
---|---|
{{ name }} | {{ count }} |
Package | Suite | Estimated Duration |
Current Duration |
Worker | Logs | Last Ping | {% if is_admin %}Admin | {% endif %}|
---|---|---|---|---|---|---|---|---|
{{ entry['package'] }} | {{ entry['suite'] }} | {{ format_duration(entry['estimated_duration']) if entry['estimated_duration'] else 'unknown' }} | {{ format_duration(entry['current_duration']) }} | {% if entry.get('worker_link') %}{{ entry['worker'] }}{% else %}{{ entry['worker'] }}{% endif %} | {% for name in entry['logfilenames'] %}{{ name }}{% if not loop.last %} {% endif %}{%endfor %} | {% if 'keepalive_age' in entry %}{{ format_duration(entry['keepalive_age']) }} | {% else %}N/A | {% endif %} {% if is_admin %}{% endif %} |
Package | Command | Estimated duration | Requestor | Last Run |
---|---|---|---|---|
{{ pkg }} | {{ description|safe }} | {{ format_duration(estimated_duration) if estimated_duration else 'unknown' }} | {{ requestor }} | {% if last_run_id %}{{ display_result_code(last_run_result_code) }}{% endif %} |