summaryrefslogtreecommitdiffstats
path: root/root/templates/history.tt
blob: 1393b7e4ab30ca67cd3fe6acaccd5f09827ec077 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
[% WRAPPER 'wrappers/root.tt' %]
<p><a href="[% uri_for('action', 'page', 'page_name', page) %]">View Current</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>
[% END %]