summaryrefslogtreecommitdiff
path: root/kbas.tpl
diff options
context:
space:
mode:
authorPaul Sherwood <paul.sherwood@codethink.co.uk>2015-10-20 20:13:37 +0100
committerPaul Sherwood <paul.sherwood@codethink.co.uk>2015-10-20 20:13:37 +0100
commit2ffe7d426c120dbfb67525b216c92da59634f799 (patch)
treee14adb757af4e987e8899c0d4534ec8926a9f699 /kbas.tpl
parentdc00ede7b70ee2bc4c15feeab1fd1901aad1c036 (diff)
downloadybd-2ffe7d426c120dbfb67525b216c92da59634f799.tar.gz
Tidyup kbas status page
Diffstat (limited to 'kbas.tpl')
-rw-r--r--kbas.tpl8
1 files changed, 4 insertions, 4 deletions
diff --git a/kbas.tpl b/kbas.tpl
index 6f4ea2f..269e65d 100644
--- a/kbas.tpl
+++ b/kbas.tpl
@@ -8,12 +8,12 @@
</head>
<body>
%#template to generate a HTML table from a list
-<p>Available Artifacts:</p>
+<p>{{title}}</p>
<table border="0">
-%for row in rows:
+%for row in content:
<tr>
- %for col in reversed(row):
- <td>{{col}}</td>
+ %for column in row:
+ <td>{{column}}</td>
%end
</tr>
%end