evorepo/templates/releng/results.html
Dan McGee c1ccc88d07 Prune down table rows on ISO testing overview page
This table is getting very long as we have upwards of 210 ISOs in the
production database. However, it doesn't make much sense to list ISOs
that no longer exist and were never tested, so omit these from the
results page if we know this to be the case.

Signed-off-by: Dan McGee <dan@archlinux.org>
2012-04-17 15:36:33 -05:00

34 lines
1.2 KiB
HTML

{% extends "base.html" %}
{% load url from future %}
{% block title %}Arch Linux - Release Engineering Testbuild Results{% endblock %}
{% block content %}
<div class="box">
<h2>Release Engineering Testbuild Results</h2>
<p>This is an overview showing a test results matrix of release
engineering produced ISOs. Various options and configurations are shown
with last success and last failure results, if known. To help improve ISO
quality, you are encouraged to <a href="{% url 'releng-test-submit' %}">give feedback</a>
if you have tested and used any ISOs. Both successful and failed results
are encouraged and welcome.</p>
<p>For a overview of which ISOs tested best, have a look at
the <a href="{% url 'releng-iso-overview' %}">overview</a>.</p>
<p>For more information, see the <a
href="https://wiki.archlinux.org/index.php/DeveloperWiki:releng_testimages_feedback">documentation
on the wiki</a>.</p>
<p>All ISOs referenced on this page are available from
<a href="{{ iso_url }}">{{ iso_url }}</a>.</p>
<table>
{% for option in options %}
{% include "releng/result_section.html" %}
{% endfor %}
</table>
</div>
{% endblock %}