~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Tools/RebaselineQueueServer/templates/builder-queue-list.html

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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>