RSS Git Download  Clone
Raw Blame History
    <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_base %]">&#171; 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>