{% for table_dict in tpl_tables %}
{% if table_dict.header %}
{{ table_dict.label }}: {{ tpl_category }} ({{ table_dict.header|length }})
{% if forloop.first %}
{% endif %}
{% for path, alias, name, experimental in table_dict.header %}
{% endfor %}
{% for builder, build_number, popup, test_status, chrome_version in table_dict.body %}
{% if forloop.parentloop.first %}
{{ build_number }}
{% if chrome_version %}
Chrome Version: {{ chrome_version.0 }} ({{ chrome_version.1 }})
{% endif %}
Build Start: {{ popup.0 }}
Build Finish: {{ popup.1 }}
Build Elapsed Time: {{ popup.2 }}
Test Start: {{ popup.3 }}
Test Finish: {{ popup.4 }}
Test Elapsed Time: {{ popup.5 }}
Reported: {{ popup.6 }}
|
{% endif %}
{% for test_name, host_name, host_info, query_url, host_status, passed_tests, total_tests, crashes in test_status %}
{% if host_name %}
{{ host_status }} |
{% if crashes %}* | {% endif %}
{{ test_name }}
Host Name:{{ host_name }}
{% for host_key, host_value in host_info %}
{{ host_key }}:{{ host_value|wordwrap:60 }}
{% endfor %}
{% if crashes %}
*Crash:
{% for crash in crashes %}
{{ crash }}
{% endfor %}
{% endif %}
|
{% else %}
N |
{% endif %}
{% endfor %}
{% endfor %}
|
{% endif %}
{% endfor %}