summaryrefslogtreecommitdiffstats
path: root/Tools/RebaselineQueueServer/templates/builder-queue-list.html
blob: 79fa02a635519ee8516fcd6abcbed1381cde5bf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
    <title>{{ builder_name|escape }} Queue</title>
    <link rel="stylesheet" href="/static/styles.css" type="text/css">
</head>
<body>

<h1>Queue: {{ builder_name|escape }}</h1>

<ol>
{% for entry in entries %}
    <li>
        {{ entry.test|escape }}
    </li>
{% empty %}
    No tests found in queue.
{% endfor %}
</ol>

<a href="/builder/{{ builder_name|escape }}/queue/edit">Edit queue</a>
</body>
</html>