summaryrefslogtreecommitdiff
path: root/templates/list-jobs.tpl
blob: 1d530aa2407e311dd0761c61e1bbafe66875d9e5 (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
29
30
31
32
<!DOCTYPE HTML>
<html>
    <head>
        <title>Lorry Controller: ALL the jobs</title>
        <link rel="stylesheet" href="/lc-static/style.css" type="text/css" />
    </head>
    <body>
        % import json

        <h1>ALL the jobs</h2>

<table>
<tr>
<th>Job ID</th>
<th>path</th>
<th>exit?</th>
</tr>
% for job in job_infos:
<tr>
<td><a href="/1.0/job-html/{{job['job_id']}}">{{job['job_id']}}</a></td>
<td><a href="/1.0/lorry-html/{{job['path']}}">{{job['path']}}</a></td>
<td>{{job['exit']}}</td>
</tr>
% end
</table>

        <hr />

        <p>Updated: {{timestamp}}</p>

    </body>
</html>