]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/html/table
removing old opac images and css
[working/Evergreen.git] / Open-ILS / src / templates / html / table
1 [%# table: an empty HTML table <table> . . . </table>
2   # ARGS:
3   #     border      # border width (default: 0)
4   #     col         # background colour (default: none)
5   #     width       # width of box (default: none, grow to fit content) 
6   #     pad         # cellpadding (default: none)
7   #     cellspace       # cellspacing (default: none)
8   #     content     # box content
9 -%]
10 <table border="[% border or 0 %]"
11        [%- IF col %] bgcolor="[% col %]"[% END %]
12        [%- IF width %] width="[% width %]"[% END %]
13        [%- IF pad.defined %] cellpadding="[% pad %]"[% END %]
14        [%- IF class %] class="[% class %]"[% END %]
15        [%- IF id %] id="[% id %]"[% END %]
16        [%- IF cellspace.defined %] cellspacing="[% cellspace %]"[% END %]>
17 [%- content -%]
18 </table>