%# A CONS is an object which cares.
%# 		-- Bernie Greenberg.

<table width="100%" border="0" cellspacing="5" cellpadding="0">
  <tr>
    <td>
      <table border="0" cellpadding="0" align="center" cellspacing="0" width="95%" class="fixed"><COL width=80px>
% foreach my $field ( @Fields ) {
        <tr> 
          <td  width="80"><nobr><% loc($field) %>&nbsp;</nobr></td>
          <td ><input <% $disabled %> type="text" name="<% $field %>" style="width:100%" value="<% loc($Item->$field) %>"></td>
        </tr>
% }
      </table>
    </td>
  </tr>
</table>
<%INIT>
my $disabled = (($Item == $RT::Nothing) ? 'disabled' : '');
</%INIT>
<%ARGS>
$Item => $RT::Nothing
@Fields => ()
</%ARGS>
