{% extends "layout.html" %} {% block content %} {% if data['crash_list']|count %} {% endif %}

Crash in Test Batch id: {{ testbatch_id }}

{% if data['crash_list']|count %}
{% for crash in data['crash_list'] %}

{{ crash.title }}

Trace:

{% for t in crash.trace_list %} {{ t }}
{% endfor %}

{% if show_report %}

Report

{% endif %}

{% endfor %}
{% else %}

No crash in this test batch

{% endif %} {% endblock %}