summaryrefslogtreecommitdiff
path: root/views/builds.tpl
blob: 2fd2d71db72e14741157442b00a7afbc0057e0f2 (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="{{build['log']}}">{{ build['log'] }}</a>
        </li>
        % end
      </ol>
    </body>
</html>