summaryrefslogtreecommitdiff
path: root/httemplate/search/elements/cust_main_phones.html
blob: 366d0983ba777c045354badc81856e2158b9addc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<TR>
  <TH VALIGN="top" ALIGN="right"><% mt('Phones') |h %></TD>
  <TD COLSPAN=6>
    <TABLE CELLSPACING=0 CELLPADDING=0>
      <TR>
% foreach my $phone (qw(daytime night mobile fax)) {
        <TD>
          <INPUT TYPE="text"
                 NAME="<% $phone %>"
                 VALUE=""
                 SIZE=18
          >
          <BR><FONT SIZE=-1 COLOR="#333333"><% mt($phone_label{$phone}) |h %></FONT>
        </TD>
        <TD>&nbsp;</TD>
% }
      </TR>
    </TABLE>
  </TD>
</TR>
<%init>
my %phone_label = (
  daytime => 'Day Phone',
  night   => 'Night Phone',
  mobile  => 'Mobile Phone',
  fax     => 'Fax Number',
);
</%init>