better prospect -> customer conversion, RT#7111
[freeside.git] / httemplate / view / cust_main / contacts_new.html
diff --git a/httemplate/view/cust_main/contacts_new.html b/httemplate/view/cust_main/contacts_new.html
new file mode 100644 (file)
index 0000000..bd812c7
--- /dev/null
@@ -0,0 +1,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>