[% META title = 'GitLog' %]
[% # PROCESS dumper.tt dump = request.referer %]
<div class="container">
<div class="row">
<legend class="form-file-upload-heading">
Version history
</legend>
</div>
<div class="row">
<div class="span12">
<span class="pull-right">
<a href="[% request.uri_for('/') %]">« return</a>
</span>
<table class="table table-bordered table-striped table-condensed">
<tr>
<th>#</th>
<th>Detail</th>
</tr>
[% count = log.size %]
[% FOREACH v IN log %]
<tr>
<td>[% count %]</td>
<td class="wrap">[% v.replace('"', '') %]</td>
</tr>
[% count = count - 1; END %]
</table>
</div>
</div>
</div>