{% extends "sandbox/sandbox.html" %} {% load safe_id %} {% block content-body %}
{% if results.document.getHardwareValues.vendor %}
Host Vendor
{{ results.document.getHardwareValues.vendor }} 
Host Model
{{ results.document.getHardwareValues.model }} 
Host Arch
{{ results.document.getHardwareValues.arch }} 
{% endif %} {% if results.document.getState %}
State:
{{ results.document.getState }}
{% endif %}
Size
{{ results.document.getLoadedFileSize|filesizeformat }}   {% if fileSizeWarning %} Large File, Close... {% endif %}
Actions:
{% for runNumber in results.runs %} {% endfor %} {% for test in results.tests %} {% for runNumber, run in test.runs.items %} {% endfor %} {% endfor %}
Run:{{ runNumber }}    debug
{{ test.test.getPath }} {% if test.device %} {{ test.device }} {% elif test.udi %} {{ test.udi }} {% else %}   {% endif %} {% if not run %}   {% elif run.getSummary %} {% if run.getSubTestOutputDocuments %}
{% for subtestOutput in run.getSubTestOutputDocuments %} {{ subtestOutput.getName }}: {{ subtestOutput.getSummary }}
{% endfor %} Combined: {{run.getSummary}}
{% else %} {{run.getSummary}} {% endif %} {% if run.getAttachmentsAttributes %}
{% for attachment in run.getAttachmentsAttributes %} {{attachment.name|truncatechars:40}}
{% endfor %}
{% endif %} {% endif %}
{% if test.test.isInteractive %} {% if test.test.getMandatory %} interactive {% else %} interactive {% endif %} {% elif test.test.getMandatory %} {{ test.test.getMandatory }}-run {% else %} {% endif %}

client: {{ results.document.getVersion }} {{ results.document.getRelease }} {% endblock content-body %}