{% 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
{# List all machines with this name. #}
{% for m in relatives %}
- {{ utils.render_machine(m) }}
{% endfor %}
{% endblock %}
{% block body %}
Fields
| Name |
Value |
{% for item in ts.machine_fields %}
| {{item.name}} |
{{machine.get_field(item)}} |
{% endfor %}
Parameters
| Name |
Value |
{% for key,value in machine.parameters|dictsort %}
| {{key}} |
{{ utils.newline_to_br(value) }} |
{% endfor %}
Compare
Compare the latest run on this machine with the latest run on another.
Submissions
| Run Order |
Start Time |
Duration |
|
{% for order,runs in associated_runs|sort|reverse %}
{% for run in runs %}
{% if loop.first %}
| {{local.render_order_link(order)}} |
{% endif %}
{{ run.start_time.isoformat() }} |
{{ run.end_time - run.start_time }}s |
{{ utils.render_result(run) }} |
{% endfor %}
{% endfor %}
{% endblock %}