{% import "utils.html" as utils %} {% set db = request.get_db() %} {% extends "layout.html" %} {% set components = [(testsuite_name, v4_url_for(".v4_recent_activity"))] %} {% block title %}Recent Activity{% endblock %} {% block sidebar %} {% endblock %} {% block body %} {# Find recent runs. #}

Active Machines

{# Show the most active machines. #} {% for machine_name,r in active_machines|dictsort %} {% endfor %}
Machine Latest Submission Results
{{ utils.render_machine(r.machine) }} {{r.end_time.isoformat()}} {{ utils.render_result(r) }}

Recent Submissions

{# Show the active submissions. #} {% for r,run_order in active_submissions %} {% endfor %}
Run Order Started Duration Machine Results
{{run_order}} {{ r.start_time.isoformat() }} {{ r.end_time - r.start_time }} {{ utils.render_machine(r.machine) }} {{ utils.render_result(r) }}
{% endblock %}