aboutsummaryrefslogtreecommitdiffstats
path: root/share/skin/default/layout/collection/grid.tt
blob: cf1d8825a498886182e99e2e7539a3b3eeeff5b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
=extends NEXT

=for layout widget

<table class="grid">
  [% call_next %]
</table>

=for layout header

<thead>
  [% call_next %]
</thead>

=for layout header_row

<tr>
  [% call_next %]
</tr>

=for layout header_cell

<th> [% call_next %] </th>

=for layout header_action_cell

<th colspan="[% col_count %]"> [% call_next %] </th>

=for layout body

<tbody>
  [% call_next %]
</tbody>

=cut