blob: fa915f540497c3b5378b8692efbbc2b0ba382ad3 (
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
29
|
<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)) {
<TD>
<INPUT TYPE="text"
NAME="<% $phone %>"
VALUE="<% $cust_main->get($phone) %>"
SIZE=18
>
<BR><FONT SIZE=-1 COLOR="#333333"><% mt($phone_label{$phone}) |h %></FONT>
</TD>
<TD> </TD>
% }
</TR>
</TABLE>
</TD>
</TR>
<%init>
my $cust_main = shift;
my $conf = FS::Conf->new;
my %phone_label = (
daytime => 'Day Phone',
night => 'Night Phone',
mobile => 'Mobile',
);
</%init>
|