{% 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
| Machine |
Latest Submission |
Results |
{# Show the most active machines. #}
{% for machine_name,r in active_machines|dictsort %}
| {{ utils.render_machine(r.machine) }} |
{{r.end_time.isoformat()}} |
{{ utils.render_result(r) }} |
{% endfor %}
Recent Submissions
| Run Order |
Started |
Duration |
Machine |
Results |
{# Show the active submissions. #}
{% for r,run_order in active_submissions %}
| {{run_order}} |
{{ r.start_time.isoformat() }} |
{{ r.end_time - r.start_time }} |
{{ utils.render_machine(r.machine) }} |
{{ utils.render_result(r) }} |
{% endfor %}
{% endblock %}