enable CardFortress in test database, #71513
[freeside.git] / httemplate / elements / tr-td-label.html
index 77c0484..3111f43 100644 (file)
@@ -1,10 +1,18 @@
-<TR>
+<%doc>
+
+Actually <TR> <TH> $label </TH>
 
-  <TD ALIGN="right" VALIGN="top" STYLE="<% $style %>" ID="<% $opt{label_id} || $opt{id}. '_label0' %>">
+Note that this puts the 'label' argument into the document verbatim, with no
+escaping or localization.
 
-    <% $opt{label} %>
+</%doc>
+<TR>
 
-  </TD>
+  <TH ALIGN  = "right"
+      VALIGN = "<% $opt{'valign'} || 'top' %>"
+      STYLE  = "<% $style %>"
+      ID     = "<% $opt{label_id} || $opt{id}. '_label0' %>"
+  ><% $required %><% $opt{label} %></TH>
 
 <%init>
 
@@ -14,4 +22,9 @@ my $style = 'padding-top: 3px';
 $style .= '; '. $opt{'cell_style'}
   if $opt{'cell_style'};
 
+my $required = $opt{'required'} ? '<font color="#ff0000">*</font>&nbsp;' : '';
+if ($required) {
+  $style .= ';font-weight: bold';
+}
+
 </%init>