0
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
1 |
% title 'Latest crashs';
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
2 |
% layout 'main';
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
3 |
%= t table => (class => 'table table-striped table-bordered table-condensed') => begin
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
4 |
<thead>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
5 |
<tr>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
6 |
<th>Signature</th>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
7 |
<th>Date</th>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
8 |
</tr>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
9 |
</thead>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
10 |
% foreach my $file(@$files) {
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
11 |
<tr>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
12 |
<td><%= link_to $file->{uuid} => url_for('report', uuid => $file->{uuid}) =%></td>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
13 |
%= t td => POSIX::strftime("%F %T", localtime($file->{date}))
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
14 |
</tr>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
15 |
% }
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
16 |
% end
|