{% extends "base.html" %} {% block body %}
{% if crashinfo is not none %}
Crash Viewer

Crash Info

{% if crashinfo is none %} None {% else %}
{{ crashinfo.decode('utf-8', errors='replace') }}
{% endif %}
{% endif %} {% if test_case is not none %}

Test Case Log

{% for step in test_case.steps %} {% endfor %}
{{ test_case.html_log_line }}
{{ step.html_log_line }}
{% else %}

Test Case Not Found

No record found. This test case does not exist, was not executed, or was not executed yet.

{% endif %}
{% endblock %}