• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!DOCTYPE html>
2<html>
3<head>
4    <title>{{ builder_name|escape }} Queue</title>
5    <link rel="stylesheet" href="/static/styles.css" type="text/css">
6</head>
7<body>
8
9<h1>Queue: {{ builder_name|escape }}</h1>
10
11<ol>
12{% for entry in entries %}
13    <li>
14        {{ entry.test|escape }}
15    </li>
16{% empty %}
17    No tests found in queue.
18{% endfor %}
19</ol>
20
21<a href="/builder/{{ builder_name|escape }}/queue/edit">Edit queue</a>
22</body>
23</html>
24