{% extends "smokeng/smoke_layout.html" %}
{% load dashboard_extras %}
{% load render_table from django_tables2 %}
{% block page_name %}
Summary of image testing for {{ image.release }} {{ image.variant }} image {{ build_number }} on {{ image.arch|display_name }}
{% endblock %}
{% block content %}
Summary of image testing for {{ image.release }} {{ image.variant }} image {{ build_number }} on {{ image.arch|display_name }}
Image Pass Rate: |
{{ summary.pass_rate_pct|floatformat }}%
|
Total Tests Run: |
{{ summary.total_count }}
|
Total Tests Failed: |
{{ summary.fail_count }}
|
Total Errors: |
{{ summary.error_count }}
|
{% if categories %}
Failure explanations
{% for name, percentage in categories.items %}
{{ name }} | {{ percentage }} |
{% endfor %}
{% endif %}
Image aggregated results
{% render_table table "table.html" %}
{% endblock %}