blob: 1ef39a4cf2595afaa57a6248f729b531366e0d72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 %}
|