RSS Git Download  Clone
Raw Blame History
[%# META title = 'Summary' %]
<!-- BEGIN [% component.name %] -->
[% # PROCESS dumper.tt dump = records %]
  <div class="container">
    <div class="row">
        <legend class="form-file-upload-heading">
            Summary
        </legend>
    </div>

    <div class="row">
        <div class="span12">
           <span class="pull-right">
                <a href="[% uri_for_section.infolib.home %]">&#171; return</a>
            </span>
             <table class="table table-bordered table-striped table-condensed">
                <tr>
                    <th>Date</th>
                    <th>Detail</th>
                </tr>
              [% USE date(format = '%d/%m/%Y') %]
                [% FOREACH entry IN records %]
                    <tr>
                        <td>[% date.format(entry.time) %]</td>
                        <td>
                          <a href="[% uri_for_section.infolib.document %]/[% entry.id %]">
                          [% entry.title %]</a>
                        </td>
                    </tr>
				[% END %]
            </table>
        </div>
    </div>
  </div>
 <!-- END [% component.name %] -->