templates/index.html.ep
author Vincent Tondellier <tonton+hg@team1664.org>
Sat, 06 Apr 2013 21:08:10 +0200
changeset 17 c91535b1db3e
parent 0 5b78b8c79d9c
child 24 b69b7aa98a1d
permissions -rw-r--r--
Move the decoding to a module, and had config to choose which module

% 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