aboutsummaryrefslogtreecommitdiff
path: root/views/history.tpl
blob: 2fb2019d6200a16f29dd7014149e1b0f5fbe6be1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
% include('header.tpl', page=page)

  <h2>History</h2>
  <ul>
  % for h in history:
    <li><a href="/history/{{page.name}}/{{h.version}}">View</a> -
    %  if h.changelog:
        <em>{{h.changelog}}</em>
    % else:
        (no changelog)
    % end
    <br>Edited on {{h.updated_at}}
    </li>
  % end
  </ul>

% include('footer.tpl')