Machine:
{{
machine.name}}:{{machine.id}}
Runs:
{# Show a small number of neighboring runs. #}
{% for r in neighboring_runs %}
- {{ "
"|safe if r.id == run.id else "" }}
{{
r.start_time}}{{
""|safe if r.id == run.id else ""}}
{% endfor %}
{# Show a small number of runs in the neighborhood of the comparison run. #}
{% if comparison_neighboring_runs %}
Compare To:
{% for r in comparison_neighboring_runs %}
- {{ "
"|safe if compare_to and r.id == compare_to.id else "" }}
{{
r.start_time}}{{
""|safe if compare_to and r.id == compare_to.id else ""}}
{% endfor %}
{% endif %}
|
Nickname |
{{machine.name}} |
Machine ID |
{{machine.id}} |
{{ utils.render_popup_begin('machine_info', 'Machine Info', true) }}
Fields
{% for item in machine.fields %}
{{item.name}} |
{{machine.get_field(item)}} |
{% endfor %}
Parameters
{% for key,value in machine.parameters|dictsort %}
{{key}} |
{{value}} |
{% endfor %}
{{ utils.render_popup_end() }}
{{ utils.render_popup_begin('run_info', 'Run Info', true) }}
Fields
Name | Value |
{% for item in run.fields %}
{{item.name}} |
{{run.get_field(item)}} |
{% endfor %}
Parameters
Name | Value |
{% for key,value in run.parameters|dictsort %}
{{key}} |
{{value}} |
{% endfor %}
{{ utils.render_popup_end() }}
{{ caller() }}
|