summaryrefslogtreecommitdiff
path: root/views/builds.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'views/builds.tpl')
-rw-r--r--views/builds.tpl19
1 files changed, 19 insertions, 0 deletions
diff --git a/views/builds.tpl b/views/builds.tpl
new file mode 100644
index 0000000..2fd2d71
--- /dev/null
+++ b/views/builds.tpl
@@ -0,0 +1,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>