{% extends "smokeng/smoke_layout.html" %} {% load dashboard_extras staticfiles %} {% load render_table from django_tables2 %} {% block page_name %} Testcase: {{ testcase }} - {{ image.release }} {{ image.arch|display_name }} {{build_number }} {% endblock %} {% block content %}

Testcase: {{ testcase }}

Build #:{{ build_number }}
Arch:{{ image.arch|display_name }}
Release:{{ image.release }}
Variant:{{ image.variant }}
Artifacts
Console Log
{% if history %}

Result History

{% for h in history %} {% endfor %}
{{h.result__image__build_number}} {{h.returncode}}
{% endif %}

Test case data

{% for entry in results %} {% for key, value in entry.items %} {% if value != '' and value != None %} {% endif %} {% endfor %} {% endfor %}
{{ key }}
{{ value|wordwrap:150 }}
{% include 'smokeng/artifacts.html' %}
{% endblock content %}