{% import "utils.html" as utils %} {% import "local.html" as local %} {% extends "layout.html" %}{ {% set components = [(testsuite_name, v4_url_for(".v4_recent_activity"))] %} {% block title %}{{machine.name}}:{{machine.id}}{% endblock %} {% block sidebar %}

Relatives

{% endblock %} {% block body %}

Fields

{% for item in ts.machine_fields %} {% endfor %}
Name Value
{{item.name}} {{machine.get_field(item)}}

Parameters

{% for key,value in machine.parameters|dictsort %} {% endfor %}
Name Value
{{key}} {{ utils.newline_to_br(value) }}

Compare

Compare the latest run on this machine with the latest run on another.

Compare {{ machine.name }} to

Submissions

{% for order,runs in associated_runs|sort|reverse %} {% for run in runs %} {% if loop.first %} {% endif %} {% endfor %} {% endfor %}
Run Order Start Time Duration  
{{local.render_order_link(order)}}{{ run.start_time.isoformat() }} {{ run.end_time - run.start_time }}s {{ utils.render_result(run) }}
{% endblock %}