summaryrefslogtreecommitdiff
path: root/views/builds.tpl
blob: 7674106985555e2b773d70b9d3bafe8cc8eb6f52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <meta name="description" content="ickweb">
        <meta name="author" content="The ick project">
        <title>Ick builds</title>
    </head>
    <body>
      <p>Builds:</p>
      <ol>
        % for build in builds:
        <li>
          <a href="/web{{build['log']}}">{{ build['log'] }}</a>
        </li>
        % end
      </ol>
    </body>
</html>