RSS Git Download  Clone
Raw Blame History
[% META title = 'GitLog' %]
[% # PROCESS dumper.tt dump = request.base %]
  <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">
              [% IF params.prefix %]<a href="[% request.uri_base _ params.prefix %]">
              [% ELSE %]<a href="#" onclick="history.back(); return false;">
              [% END %]&#171; return</a>
            </span>
            <table class="table table-bordered table-striped table-condensed">
                <tr>
                    <th>#</th>
                    <th>When</th>
                    <th>Detail</th>
                </tr>
                [% count = log.size %]

                [% FOREACH entry IN log %]
                    <tr>
                        <td>[% count %]</td>
                        <td class="text-nowrap">[% entry.date %]</td>
                        <td class="wrap">[% entry.msg %]</td>
                    </tr>
                [% count = count - 1; END %]
            </table>
        </div>
    </div>
  </div>