- RequestForm.git
- views
- gitlog.tt
This file ( 856B ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
<div class="container">
<div class="row">
<legend class="form-file-upload-heading">
Version history <span class="pull-right">
<a class="tiny" href="[% request.uri_base %]">« return</a></span>
</legend>
</div>
<div class="row">
<div class="span12">
<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('"', '') | html %]</td>
</tr>
[% count = count - 1; END %]
</table>
</div>
</div>
</div>