summaryrefslogtreecommitdiffstats
path: root/Tools/RebaselineQueueServer/templates/home.html
blob: c6a16ffdca294569943df9b00a4f481e47e8f2b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
  <title>Rebaseline Queue</title>
  <link rel="stylesheet" href="/static/styles.css" type="text/css">
</head>
<body>

<h1>Rebaseline Queue</h1>

<ul>
    <li><a href="/builder/picker">Browse and enqueue failing tests on builders</a></li>
    <li>
        Builders with enqueued tests:
        <ul>
{% for builder_name in builder_names %}
          <li>
            <a href="/builder/{{ builder_name|escape }}/queue">{{ builder_name|escape }}</a>
          </li>
{% empty %}
        None
{% endfor %}
        </ul>
    </li>
</ul>

</body>
</html>