summaryrefslogtreecommitdiff
path: root/httemplate/elements/table-grid.html
blob: 4f4200570ce0e1609941ccca48ee50328cf4de1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<TABLE CLASS="grid" 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>