Option to ignore old CDRs, RT#81480
[freeside.git] / httemplate / elements / table-grid.html
1 <TABLE CLASS="grid" CELLSPACING=<% $opt{cellspacing} %> CELLPADDING=<% $opt{cellpadding} %> <% $opt{bgcolor} %>>
2
3 <%init>
4
5 my %opt = @_;
6 $opt{cellspacing} ||= 0;
7 $opt{cellpadding} ||= 0;
8
9 $opt{bgcolor} =~ s/^#//;
10 $opt{bgcolor} = 'BGCOLOR="#'. $opt{bgcolor}. '"' if length($opt{bgcolor});
11
12 </%init>
13