summaryrefslogtreecommitdiffstats
path: root/root/templates/history.tt
diff options
context:
space:
mode:
Diffstat (limited to 'root/templates/history.tt')
-rw-r--r--root/templates/history.tt16
1 files changed, 16 insertions, 0 deletions
diff --git a/root/templates/history.tt b/root/templates/history.tt
new file mode 100644
index 0000000..a50839b
--- /dev/null
+++ b/root/templates/history.tt
@@ -0,0 +1,16 @@
+<html>
+<body>
+<h1>[% page %]</h1>
+<p><a href="[% uri_for('action', 'page', 'page_name', page) %]">View</a></p>
+<ul>
+[% SET cur = head %]
+[% WHILE cur %]
+<li><a href="[% uri_for('action', 'old_page', 'page_name', page, 'rev', cur.digest) %]">[% cur.author.id %] on [% cur.modification_date %]</a></li>
+[% SET cur = cur.previous_revision %]
+[% END %]
+</ul>
+<p style="font-size: small">
+Last modified by [% author.id %] on [% modified %]
+</p>
+</body>
+</html>