summaryrefslogtreecommitdiff
path: root/kbas.tpl
blob: a5b72a7e18bce43c3f9bc6c323e0f7af2b5437bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta http-equiv="content-type"
 content="text/html; charset=ISO-8859-1">
  <title>{{title}}</title>
  <link rel="stylesheet" type="text/css" href="{{css}}"/>
</head>
<body>
%#template to generate a HTML table from a list 
<p>{{title}}</p>
<table border="0">
%for row in content:
    <tr>
      <td>{{row[0]}}</td><td>{{row[1]}}</td>
      %if row[2]:
         <td><a href="./get/{{row[2]}}"> {{row[2]}}</a></td>
      %end
    </tr>
%end
</table>
</body>