0
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
1 |
%= t table => (class => 'table table-striped table-bordered table-condensed') => begin
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
2 |
<thead>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
3 |
<tr>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
4 |
<th>Filename</th>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
5 |
<th>Version</th>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
6 |
<th>Debug Identifier</th>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
7 |
<th>Debug Filename</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 $module(@$modules) {
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
11 |
<tr>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
12 |
%= t td => $module->{filename}
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
13 |
%= t td => $module->{version}
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
14 |
%= t td => $module->{debug_id}
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
15 |
%= t td => $module->{debug_file}
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
16 |
</tr>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
17 |
% }
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
18 |
% end
|