summaryrefslogtreecommitdiffstats
path: root/root/templates/history.tt
blob: d77358d84d056d9766465905a108a98d77d3b17a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
[% WRAPPER 'wrappers/root.tt' %]
<p><a href="[% uri_for('action', 'view', 'page_name', page) %]">View Current</a></p>
<ul>
[% SET cur = head %]
[% WHILE cur %]
<li><a href="[% uri_for('action', 'view_old', 'page_name', page, 'rev', cur.digest) %]">[% cur.author.id %] on [% cur.modification_date %]</a></li>
[% SET cur = cur.previous_revision %]
[% END %]
</ul>
[% END %]