From bfe6afcd7ac5ae7b6f07caa7b02a33fec710ebda Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Thu, 28 Apr 2011 17:58:13 -0500 Subject: Rename isotests to releng Signed-off-by: Dan McGee --- templates/releng/add.html | 20 ++++++++++++++++++ templates/releng/result_list.html | 41 ++++++++++++++++++++++++++++++++++++ templates/releng/result_section.html | 26 +++++++++++++++++++++++ templates/releng/results.html | 25 ++++++++++++++++++++++ templates/releng/thanks.html | 13 ++++++++++++ 5 files changed, 125 insertions(+) create mode 100644 templates/releng/add.html create mode 100644 templates/releng/result_list.html create mode 100644 templates/releng/result_section.html create mode 100644 templates/releng/results.html create mode 100644 templates/releng/thanks.html (limited to 'templates/releng') diff --git a/templates/releng/add.html b/templates/releng/add.html new file mode 100644 index 0000000..3678532 --- /dev/null +++ b/templates/releng/add.html @@ -0,0 +1,20 @@ +{% extends "base.html" %} + +{% block title %}Arch Linux - Test Result Entry{% endblock %} + +{% block content %} +
+

Arch Releng Testbuild Feedback Entry

+ +

This page allows you to submit feedback after testing and using a + release engineering install ISO. If you do not currently have feedback to + submit, you may want to take a look at the current + results page.

+ +
{% csrf_token %} + {{ form.as_p }} + +
+
+
+{% endblock %} diff --git a/templates/releng/result_list.html b/templates/releng/result_list.html new file mode 100644 index 0000000..b3ae025 --- /dev/null +++ b/templates/releng/result_list.html @@ -0,0 +1,41 @@ +{% extends "base.html" %} + +{% block content %} +
+

Results for: + {% if option %}{{ option|title }}: {{ value }}{% endif %} + {{ iso_name|default:"" }} +

+ +

Go back to testing results

+ + + + + + + + + + + + {% for test in test_list %} + + + + + + + {% endfor %} + +
IsoSubmitted ByDate SubmittedSuccess
{{ test.iso.name }}{{ test.user_name }}{{ test.created|date }}{{ test.success|yesno }}
+
+{% load cdn %}{% jquery %} + + + +{% endblock %} diff --git a/templates/releng/result_section.html b/templates/releng/result_section.html new file mode 100644 index 0000000..52f0333 --- /dev/null +++ b/templates/releng/result_section.html @@ -0,0 +1,26 @@ + +

{% if option.is_rollback %}Rollback: {% endif %}{{ option.name|title }}

+ +{% for item in option.values %} + + + + {{ item.value.name|lower }} + + + + {% if item.success %} + + {{ item.success.name }} + + {% else %}Never succeeded{% endif %} + + + {% if item.failure %} + + {{ item.failure.name }} + + {% else %}Never failed{% endif %} + + +{% endfor %} diff --git a/templates/releng/results.html b/templates/releng/results.html new file mode 100644 index 0000000..4aca1f1 --- /dev/null +++ b/templates/releng/results.html @@ -0,0 +1,25 @@ +{% extends "base.html" %} + +{% block title %}Arch Linux - Release Engineering Testbuild Results{% endblock %} + +{% block content %} +
+

Release Engineering Testbuild Results

+ +

This is a overview screen 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 give feedback + if you have tested and used any ISOs. Both successful and failed results + are encouraged and welcome.

+ +

All ISOs referenced on this page are available from + {{ iso_url }}.

+ + + {% for option in options %} + {% include "releng/result_section.html" %} + {% endfor %} +
+
+{% endblock %} diff --git a/templates/releng/thanks.html b/templates/releng/thanks.html new file mode 100644 index 0000000..b261426 --- /dev/null +++ b/templates/releng/thanks.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} + +{% block title %}Arch Linux - Feedback - Thanks!{% endblock %} + +{% block content %} +
+

Thanks!

+

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.

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