summaryrefslogtreecommitdiff
path: root/templates/isotests/iso_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/isotests/iso_list.html')
-rw-r--r--templates/isotests/iso_list.html18
1 files changed, 18 insertions, 0 deletions
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 %}