{% 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 }}
{% if history %}
{% endif %}
{% if category != '' %}
Failure explanation
{% if category = 'Uncategorized' %}
This test failure has not yet been categorized.
{% if not request.user.is_authenticated %}
Log in to edit.
{% endif %}
{% else %}
{% if not show_form %}
Cause: {{ category }}
{% endif %}
{% endif %}
{% if can_triage %}
{% if show_form %}
{% else %}
(edit)
{% endif %}
{% endif %}
{% endif %}
Test case data
{% for entry in results %}
{% for key, value in entry.items %}
{% if value != '' and value != None %}
{{ key }} |
{{ value|wordwrap:150 }} |
{% endif %}
{% endfor %}
{% endfor %}
{% include 'smokeng/artifacts.html' %}
{% endblock content %}