diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-02-03 07:14:45 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-02-03 07:14:45 -0800 |
commit | 167dbdad01e2c1b62fd9be43cc05212e8c874a02 (patch) | |
tree | 0d49c9ba03d64560f21b02a20d32d6005a790ced /httemplate/view/prospect_main.html | |
parent | 475ae93877f1d834941f7b9adcc35ee84c5c22fa (diff) |
contacts can be shared among customers / "duplicate contact emails", RT#27943
Diffstat (limited to 'httemplate/view/prospect_main.html')
-rw-r--r-- | httemplate/view/prospect_main.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/httemplate/view/prospect_main.html b/httemplate/view/prospect_main.html index 66abffcdd..a1f14a374 100644 --- a/httemplate/view/prospect_main.html +++ b/httemplate/view/prospect_main.html @@ -39,9 +39,10 @@ </TR> % } -% foreach my $contact ( $prospect_main->contact ) { +% foreach my $prospect_contact ( $prospect_main->prospect_contact ) { +% my $contact = $prospect_contact->contact; <TR> - <TD ALIGN="right"><% $contact->contact_classname %> Contact</TD> + <TD ALIGN="right"><% $prospect_contact->contact_classname %> Contact</TD> <TD BGCOLOR="#FFFFFF"><% $contact->line %></TD> </TR> %} |