{% extends "emails/tests_base.html" %} {% comment %} Copyright 2012 Google Inc. All Rights Reserved. This template builds an email with details of test(s) that failed. {% endcomment %} {% block status_block %}failed{% endblock %} {% block fail_table_block %} {% if tpl_failed_tests %}

Report summary:

{% for row in tpl_split_failed_tests %} {% for name, details in row %} {% if details %} {% endif %} {% endfor %} {% for name, details in row %} {% if details %} {% endif %} {% endfor %} {% endfor %}
{{ name }} {% if details.experimental %}  (experimental) {% endif %}
{{ details.status }}

{% endif %} {% if tpl_crashes %}

Crashes detected during testing:

{% endif %} {% if tpl_failed_tests %}

Full report:

{% for name, details in tpl_failed_tests %} {% if details %} {% endif %} {% endfor %}
{{ details.0.status }} {{ name }} {% if details.0.experimental %}  (experimental) {% endif %}
{% if details.0.test_logs %}
{{ details.0.test_logs }}
{% else %}
No error logs available.
{% endif %}

{% endif %} {% endblock %}