RSS Git Download  Clone
Raw Blame History
<!-- BEGIN [% component.name %] -->
  <div class="container">
    <div class="row mt-3">
        <h4>Version history</h4>
    </div>

    <div class="row">
        <div class="span12">
            <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>
<!-- END [% component.name %] -->