stray closing /TABLE in the no-ticket case
[freeside.git] / httemplate / elements / tr-fixed.html
index 373c0ab..3e115d6 100644 (file)
@@ -1,16 +1,18 @@
-<% include('tr-td-label.html', @_ ) %>
+<& tr-td-label.html, @_ &>
 
-  <TD BGCOLOR="#dddddd" <% $style %> <% $colspan %>><% $value %></TD>
+  <TD <% $style %> <% $colspan %>><% $value %></TD>
 
 </TR>
 
-<% include('hidden.html', %opt ) %>
+<& hidden.html, %opt &>
 
 <%init>
 
 my %opt = @_;
 
-my $style = $opt{'cell_style'} ? ' STYLE="'. $opt{'cell_style'}. '" ' : '';
+my $style = $opt{'cell_style'}
+              ? ' STYLE="'. $opt{'cell_style'}. '" '
+              : ' STYLE="color:#666666" ';
 
 my $colspan = $opt{'colspan'} ? ' COLSPAN="'. $opt{'colspan'}. '" ' : '';