From 7954617a0593632d749d7e8b60beab2aae1669ba Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Wed, 17 Aug 2011 01:26:23 +0200 Subject: 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 Signed-off-by: Dan McGee --- templates/releng/iso_overview.html | 48 ++++++++++++++++++++++++++++++++++++++ templates/releng/results.html | 3 +++ templates/releng/thanks.html | 4 +++- 3 files changed, 54 insertions(+), 1 deletion(-) create mode 100644 templates/releng/iso_overview.html (limited to 'templates/releng') 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 %} +
+

Failures and Successes for Testing ISOs

+ +

Go back to testing results

+ + + + + + + + + + + + {% for iso in isos %} + + + + + + + {% endfor %} + +
ISOCurrently Available# Successes# Failures
+ + {{ iso.name }} + + + {{ iso.active|yesno }} + + {{ iso.successes }} + + {{ iso.failures }} +
+
+{% load cdn %}{% jquery %} + + + +{% endblock %} diff --git a/templates/releng/results.html b/templates/releng/results.html index c3e7d99..4ff3c86 100644 --- a/templates/releng/results.html +++ b/templates/releng/results.html @@ -13,6 +13,9 @@ if you have tested and used any ISOs. Both successful and failed results are encouraged and welcome.

+

For a overview of which ISOs tested best, have a look at + the overview.

+

For more information, see the documentation on the wiki.

diff --git a/templates/releng/thanks.html b/templates/releng/thanks.html index b261426..80018b0 100644 --- a/templates/releng/thanks.html +++ b/templates/releng/thanks.html @@ -8,6 +8,8 @@

Thank you for taking the time to give us this information! Your results have been succesfully added to our database.

You can now go back to the results, - or give more feedback.

+ give more feedback, or + have a look at the look at + the ISO test overview.

{% endblock %} -- cgit v1.2.3-24-g4f1b