summaryrefslogtreecommitdiff
path: root/httemplate/elements/table-grid.html
blob: bf60fe03e9d4cc0c496d3b3bffc134e557d4bc45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<TABLE CLASS="grid nosplitrows" CELLSPACING=<% $opt{cellspacing} %> CELLPADDING=<% $opt{cellpadding} %> <% $opt{bgcolor} %>>

<%init>

my %opt = @_;
$opt{cellspacing} ||= 0;
$opt{cellpadding} ||= 0;

$opt{bgcolor} =~ s/^#//;
$opt{bgcolor} = 'BGCOLOR="#'. $opt{bgcolor}. '"' if length($opt{bgcolor});

</%init>