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/isotests/add.html | 20 ----------------- templates/isotests/result_list.html | 41 ---------------------------------- templates/isotests/result_section.html | 26 --------------------- templates/isotests/results.html | 25 --------------------- templates/isotests/thanks.html | 13 ----------- 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 +++++++++++ 10 files changed, 125 insertions(+), 125 deletions(-) delete mode 100644 templates/isotests/add.html delete mode 100644 templates/isotests/result_list.html delete mode 100644 templates/isotests/result_section.html delete mode 100644 templates/isotests/results.html delete mode 100644 templates/isotests/thanks.html 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') diff --git a/templates/isotests/add.html b/templates/isotests/add.html deleted file mode 100644 index 3678532d..00000000 --- a/templates/isotests/add.html +++ /dev/null @@ -1,20 +0,0 @@ -{% 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/isotests/result_list.html b/templates/isotests/result_list.html deleted file mode 100644 index b3ae025b..00000000 --- a/templates/isotests/result_list.html +++ /dev/null @@ -1,41 +0,0 @@ -{% 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/isotests/result_section.html b/templates/isotests/result_section.html deleted file mode 100644 index 52f03339..00000000 --- a/templates/isotests/result_section.html +++ /dev/null @@ -1,26 +0,0 @@ - -

{% 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/isotests/results.html b/templates/isotests/results.html deleted file mode 100644 index 033fdbfe..00000000 --- a/templates/isotests/results.html +++ /dev/null @@ -1,25 +0,0 @@ -{% 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 "isotests/result_section.html" %} - {% endfor %} -
-
-{% endblock %} diff --git a/templates/isotests/thanks.html b/templates/isotests/thanks.html deleted file mode 100644 index b261426d..00000000 --- a/templates/isotests/thanks.html +++ /dev/null @@ -1,13 +0,0 @@ -{% 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 %} diff --git a/templates/releng/add.html b/templates/releng/add.html new file mode 100644 index 00000000..3678532d --- /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 00000000..b3ae025b --- /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 00000000..52f03339 --- /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 00000000..4aca1f10 --- /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 00000000..b261426d --- /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-54-g00ecf