{% extends "layout.html" %} {% block sidebar %}{% include "cupboard/sidebar.html" %}{% endblock %} {% from "run_util.html" import display_result_code %} {% block page_title %}Cupboard - History{% endblock %} {% block body %}

History

For what's coming up, see the queue.

Last {{ count }} runs:

{% for run in history %} {% endfor %}
Finish Time Package Suite Worker Duration Result Summary
{{ format_timestamp(run.finish_time) }} {{ run.package }} {{ run.suite }} {% if run.worker_link %}{{ run.worker_name }}{% else %}{{ run.worker_name }}{% endif %} {{ format_duration(run.duration) }} {{ display_result_code(run.result_code)|safe }} {% if run.result_code != 'success' %}{{ run.description }}{% endif %}
{% endblock %}