templates/index.html.ep
author Vincent Tondellier <tonton+hg@team1664.org>
Thu, 03 May 2012 13:17:05 +0200
changeset 6 8dfc7e5dbdc7
parent 0 5b78b8c79d9c
child 24 b69b7aa98a1d
permissions -rw-r--r--
Fix compatibility with perl < 5.11

% title 'Latest crashs';
% layout 'main';
%= t table => (class => 'table table-striped table-bordered table-condensed') => begin
<thead>
  <tr>
    <th>Signature</th>
    <th>Date</th>
  </tr>
</thead>
% foreach my $file(@$files) {
<tr>
  <td><%= link_to $file->{uuid} => url_for('report', uuid => $file->{uuid}) =%></td>
  %= t td => POSIX::strftime("%F %T", localtime($file->{date}))
</tr>
% }
% end