RT# 77532 - fixed error where cust main fax not showing, and fixed checking of phonet...
[freeside.git] / httemplate / search / elements / cust_main_phones.html
1 <TR>
2   <TH VALIGN="top" ALIGN="right"><% mt('Phones') |h %></TD>
3   <TD COLSPAN=6>
4     <TABLE CELLSPACING=0 CELLPADDING=0>
5       <TR>
6 % foreach my $phone (qw(daytime night mobile fax)) {
7         <TD>
8           <INPUT TYPE="text"
9                  NAME="<% $phone %>"
10                  VALUE=""
11                  SIZE=18
12           >
13           <BR><FONT SIZE=-1 COLOR="#333333"><% mt($phone_label{$phone}) |h %></FONT>
14         </TD>
15         <TD>&nbsp;</TD>
16 % }
17       </TR>
18     </TABLE>
19   </TD>
20 </TR>
21 <%init>
22 my %phone_label = (
23   daytime => 'Day Phone',
24   night   => 'Night Phone',
25   mobile  => 'Mobile Phone',
26   fax     => 'Fax Number',
27 );
28 </%init>