summaryrefslogtreecommitdiff
path: root/httemplate/search/elements/options_cust_contacts.html
blob: cfbf834b033213339b9e5482e9dcbe5040670279 (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
30
31
32
33
34
35
36
    <TR>
      <TH ALIGN="right" VALIGN="center"><% mt('First name') |h %></TH>
      <TD><INPUT TYPE="text" NAME="<%$field_prefix%>firstname" SIZE=54></TD>
    </TR>

    <TR>
      <TH ALIGN="right" VALIGN="center"><% mt('Last name') |h %></TH>
      <TD><INPUT TYPE="text" NAME="<%$field_prefix%>lastname" SIZE=54></TD>
    </TR>

    <TR>
      <TH ALIGN="right" VALIGN="center"><% mt('Email') |h %></TH>
      <TD><INPUT TYPE="text" NAME="<%$field_prefix%>email" SIZE=54></TD>
    </TR>

    <TR>
      <TH ALIGN="right" VALIGN="center"><% mt('Home Phone') |h %></TH>
      <TD><INPUT TYPE="text" NAME="<%$field_prefix%>homephone" SIZE=54></TD>
    </TR>

    <TR>
      <TH ALIGN="right" VALIGN="center"><% mt('Work Phone') |h %></TH>
      <TD><INPUT TYPE="text" NAME="<%$field_prefix%>workphone" SIZE=54></TD>
    </TR>

    <TR>
      <TH ALIGN="right" VALIGN="center"><% mt('Mobile Phone') |h %></TH>
      <TD><INPUT TYPE="text" NAME="<%$field_prefix%>mobilephone" SIZE=54></TD>
    </TR>

<%init>

my %opt = @_;
my $field_prefix = $opt{'pre_fix'} ? $opt{'pre_fix'} : '';

</%init>