summaryrefslogtreecommitdiff
path: root/views/revs.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'views/revs.tpl')
-rw-r--r--views/revs.tpl9
1 files changed, 9 insertions, 0 deletions
diff --git a/views/revs.tpl b/views/revs.tpl
new file mode 100644
index 0000000..500605d
--- /dev/null
+++ b/views/revs.tpl
@@ -0,0 +1,9 @@
+%#generate HTML table of all revisions
+<table border="1">
+%for rev in revs:
+ <tr>
+ <td><a href="{{rev}}/">Revision {{rev}}</a></td>
+ <td><a href="{{rev}}/deck.odp"><img src="{{rev}}/thumbnail.png"></a></td>
+ </tr>
+%end
+</table>