diff options
Diffstat (limited to 'Tools/RebaselineQueueServer/templates/builder-queue-list.html')
-rw-r--r-- | Tools/RebaselineQueueServer/templates/builder-queue-list.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Tools/RebaselineQueueServer/templates/builder-queue-list.html b/Tools/RebaselineQueueServer/templates/builder-queue-list.html new file mode 100644 index 0000000..79fa02a --- /dev/null +++ b/Tools/RebaselineQueueServer/templates/builder-queue-list.html @@ -0,0 +1,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> |