blob: f94bbe1a03387e11705bd0d9c04f38f81e5833a2 (
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 %}
{% 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 %}
|