aboutsummaryrefslogtreecommitdiffstats
path: root/share/skin/default/layout/list_view.tt
diff options
context:
space:
mode:
Diffstat (limited to 'share/skin/default/layout/list_view.tt')
-rw-r--r--share/skin/default/layout/list_view.tt53
1 files changed, 53 insertions, 0 deletions
diff --git a/share/skin/default/layout/list_view.tt b/share/skin/default/layout/list_view.tt
new file mode 100644
index 0000000..3205e60
--- /dev/null
+++ b/share/skin/default/layout/list_view.tt
@@ -0,0 +1,53 @@
+=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>
+
+=for layout body_row
+
+<tr> [% content %] </tr>
+
+=for layout body_cell
+
+<td> [% content %] </td>
+
+=cut