aboutsummaryrefslogtreecommitdiff
path: root/views/history.tpl
blob: 5e0d42a3bdd89b14be407fe9fa62b41e43b9208b (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>Updated on {{h.updated_at}}
    </li>
  % end
  </ul>

% include('footer.tpl')