RSS Git Download  Clone
Raw Blame History
[% META title = 'Summary' %]
[% # 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="[% request.uri_for('/') %]">&#171; return</a>
            </span>
             <table class="table table-bordered table-striped table-condensed">
                <tr>
                    <th>Date</th>
                    <th>Detail</th>
                </tr>
                [% FOREACH entry IN records %]
                    <tr>
                        <td>[% entry.date %]</td>
                        <td>
							<a href="[% request.uri_for('/id') %]/[% entry.id %]">[% entry.description %]</a>
							[[% entry.comment %]]
							<a href="[% request.uri_for('/download') %]/[% entry.filename %]"
							  target="_blank"><i class="bi bi-file-pdf"></i>
							</a>							
						</td>
                    </tr>
				[% END %]
            </table>
        </div>
    </div>
  </div>