aboutsummaryrefslogtreecommitdiffstats
path: root/share/skin/default/layout/grid_view.tt
blob: 00157138e1898b568e852d335e989314e39cbd42 (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
36
37
38
39
40
41
42
43
44
45
=for layout widget

<table>
  [% header %]
  [% body   %]
  [% footer %]
</table>

=for layout header

<thead>
  [% content %]
</thead>

=for layout header_row

<tr>
  [% content %]
</tr>

=for layout header_cell

<th> [% content %] </th>

=for layout footer

<tfoot>
  [% content %]
</tfoot>

=for layout footer_row

<tr> [% content %] </tr>

=for layout footer_cell

<td> [% content %] </td>

=for layout body

<tbody>
  [% content %]
</tbody>

=cut