summaryrefslogtreecommitdiffstats
path: root/templates/releng/iso_overview.html
diff options
context:
space:
mode:
authorTom Willemsen <ryuslash@gmail.com>2011-08-17 01:26:23 +0200
committerDan McGee <dan@archlinux.org>2011-08-17 14:51:42 +0200
commit7954617a0593632d749d7e8b60beab2aae1669ba (patch)
tree73f2f77666212d206b724f431babed41b4366fdc /templates/releng/iso_overview.html
parente3ac14389448a73d9f9b8286a25930f3978784fb (diff)
downloadarchweb-7954617a0593632d749d7e8b60beab2aae1669ba.tar.gz
archweb-7954617a0593632d749d7e8b60beab2aae1669ba.tar.xz
New page ISO Overview
ISO Overview shows a simple list of all the ISOs that are available and how many times they've been tested successfully or have failed. Signed-off-by: Tom Willemsen <ryuslash@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/releng/iso_overview.html')
-rw-r--r--templates/releng/iso_overview.html48
1 files changed, 48 insertions, 0 deletions
diff --git a/templates/releng/iso_overview.html b/templates/releng/iso_overview.html
new file mode 100644
index 0000000..ee3aaed
--- /dev/null
+++ b/templates/releng/iso_overview.html
@@ -0,0 +1,48 @@
+{% extends "base.html" %}
+
+{% block content %}
+<div class="box">
+ <h2>Failures and Successes for Testing ISOs</h2>
+
+ <p><a href="{% url releng-test-overview %}">Go back to testing results</a></p>
+
+ <table id="releng-result" class="results">
+ <thead>
+ <tr>
+ <th>ISO</th>
+ <th>Currently Available</th>
+ <th># Successes</th>
+ <th># Failures</th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for iso in isos %}
+ <tr>
+ <td>
+ <a href="{% url releng-results-iso iso.pk %}">
+ {{ iso.name }}
+ </a>
+ </td>
+ <td>
+ {{ iso.active|yesno }}
+ </td>
+ <td>
+ {{ iso.successes }}
+ </td>
+ <td>
+ {{ iso.failures }}
+ </td>
+ </tr>
+ {% endfor %}
+ </tbody>
+ </table>
+</div>
+{% load cdn %}{% jquery %}
+<script type="text/javascript" src="/media/jquery.tablesorter.min.js"></script>
+<script type="text/javascript" src="/media/archweb.js"></script>
+<script type="text/javascript">
+$(document).ready(function() {
+ $(".results:not(:has(tbody tr.empty))").tablesorter({widgets: ['zebra']});
+});
+</script>
+{% endblock %}