diff options
author | Tom Willemsen <tom.willemsen@archlinux.us> | 2011-03-01 18:47:03 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-04-28 13:15:54 -0500 |
commit | 1547c7c49a1852852ffbac0737d0ffdf54addda9 (patch) | |
tree | 57870efa44b40ffa37e40dd90fa35d96c9b04038 /templates/isotests | |
parent | e6717510a0a7976fca1ccd3e5aaf1a16123a1ad4 (diff) |
isotests: entry and listing of release engineering tests
Add a new project for entry and listing of testing results for our
release ISOs. This will assist the release engineering team with
determining a good ISO to make into the real deal.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/isotests')
-rw-r--r-- | templates/isotests/add.html | 13 | ||||
-rw-r--r-- | templates/isotests/iso_list.html | 18 | ||||
-rw-r--r-- | templates/isotests/test_list.html | 18 |
3 files changed, 49 insertions, 0 deletions
diff --git a/templates/isotests/add.html b/templates/isotests/add.html new file mode 100644 index 00000000..07d3ed81 --- /dev/null +++ b/templates/isotests/add.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} + +{% block title %}Arch Linux - Test Result Entry{% endblock %} + +{% block content %} +<div class="box"> + <h2>Arch releng iso build test result entry</h2> + <form action="" method="post">{% csrf_token %} + {{ form.as_p }} + <input type="submit" value="Submit" /> + </form> +</div> +{% endblock %} diff --git a/templates/isotests/iso_list.html b/templates/isotests/iso_list.html new file mode 100644 index 00000000..f94bbe1a --- /dev/null +++ b/templates/isotests/iso_list.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} + +{% block title %}Arch Linux - Testresults{% endblock %} + +{% block content %} +{% if object_list %} +<div class="box"> + <h2>Arch releng iso buid test results</h2> + <ul> + {% for iso in object_list %} + <li><a href="/tests/{{ iso.id }}/">{{ iso }}</a></li> + {% endfor %} + </ul> + {% else %} + <p>No tests are available.</p> + {% endif %} +</div> +{% endblock %} diff --git a/templates/isotests/test_list.html b/templates/isotests/test_list.html new file mode 100644 index 00000000..1ef39a4c --- /dev/null +++ b/templates/isotests/test_list.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} + +{% block title %}Arch Linux - Testresults{% endblock %} + +{% block content %} +<div class="box"> + <h2>Arch releng iso build test results</h2> + {% if object_list %} + <ul> + {% for test in object_list %} + <li><a href="/tests/{{ test.id }}/">{{ test.iso }}</a></li> + {% endfor %} + </ul> + {% else %} + <p>No test results are available.</p> + {% endif %} +</div> +{% endblock %} |