summaryrefslogtreecommitdiff
path: root/httemplate/view/cust_main/contacts_new.html
blob: bd812c7e7f14e4f3bab08612b21c9833dfd371f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
% if ( @contacts ) {
<BR>
Contacts
<% ntable("#cccccc",2) %>
%   foreach my $contact ( @contacts ) {
      <TR>
        <TD ALIGN="right">Contact</TD>
        <TD BGCOLOR="#FFFFFF"><% $contact->line %></TD>
      </TR>
%   }
</TABLE>

% }

<%init>

my( $cust_main ) = @_;
#my $conf = new FS::Conf;

my @contacts = $cust_main->cust_contact;

</%init>