| author | Vincent Tondellier <tonton+hg@team1664.org> |
| Sat, 12 Sep 2015 01:21:06 +0200 | |
| changeset 74 | e7eda506a66f |
| parent 36 | 703f1af889d1 |
| permissions | -rw-r--r-- |
|
36
703f1af889d1
Add highlight on mouse hover to tables
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
1 |
%= t table => (class => 'table table-striped table-hover table-bordered table-condensed') => begin |
| 0 | 2 |
<thead> |
3 |
<tr> |
|
4 |
<th>Filename</th> |
|
5 |
<th>Version</th> |
|
6 |
<th>Debug Identifier</th> |
|
7 |
<th>Debug Filename</th> |
|
8 |
</tr> |
|
9 |
</thead> |
|
10 |
% foreach my $module(@$modules) {
|
|
|
36
703f1af889d1
Add highlight on mouse hover to tables
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
11 |
%= t tr => begin |
|
703f1af889d1
Add highlight on mouse hover to tables
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
12 |
%= t td => $module->{filename}
|
|
703f1af889d1
Add highlight on mouse hover to tables
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
13 |
%= t td => $module->{version}
|
|
703f1af889d1
Add highlight on mouse hover to tables
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
14 |
%= t td => $module->{debug_id}
|
|
703f1af889d1
Add highlight on mouse hover to tables
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
15 |
%= t td => $module->{debug_file}
|
|
703f1af889d1
Add highlight on mouse hover to tables
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
16 |
% end |
| 0 | 17 |
% } |
|
36
703f1af889d1
Add highlight on mouse hover to tables
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
18 |
% end |