summaryrefslogtreecommitdiff
path: root/httemplate/view/cust_main/contacts.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/view/cust_main/contacts.html')
-rw-r--r--httemplate/view/cust_main/contacts.html28
1 files changed, 22 insertions, 6 deletions
diff --git a/httemplate/view/cust_main/contacts.html b/httemplate/view/cust_main/contacts.html
index 456d117a6..89926ea64 100644
--- a/httemplate/view/cust_main/contacts.html
+++ b/httemplate/view/cust_main/contacts.html
@@ -51,14 +51,22 @@ Billing address
%>
<TR>
<TD ALIGN="right"><%= $daytime_label %></TD>
- <TD COLSPAN=5 BGCOLOR="#ffffff">
- <%= $cust_main->daytime || '&nbsp' %>
+ <TD COLSPAN=6 BGCOLOR="#ffffff">
+ <%= include('/elements/phonenumber.html',
+ $cust_main->daytime,
+ 'callable'=>1
+ )
+ %>
</TD>
</TR>
<TR>
<TD ALIGN="right"><%= $night_label %></TD>
- <TD COLSPAN=5 BGCOLOR="#ffffff">
- <%= $cust_main->night || '&nbsp' %>
+ <TD COLSPAN=6 BGCOLOR="#ffffff">
+ <%= include('/elements/phonenumber.html',
+ $cust_main->night,
+ 'callable'=>1
+ )
+ %>
</TD>
</TR>
<TR>
@@ -111,13 +119,21 @@ Service address
<TR>
<TD ALIGN="right"><%= $daytime_label %></TD>
<TD COLSPAN=5 BGCOLOR="#ffffff">
- <%= $cust_main->get("${pre}daytime") || '&nbsp' %>
+ <%= include('/elements/phonenumber.html',
+ $cust_main->get("${pre}daytime"),
+ 'callable'=>1
+ )
+ %>
</TD>
</TR>
<TR>
<TD ALIGN="right"><%= $night_label %></TD>
<TD COLSPAN=5 BGCOLOR="#ffffff">
- <%= $cust_main->get("${pre}night") || '&nbsp' %>
+ <%= include('/elements/phonenumber.html',
+ $cust_main->get("${pre}night"),
+ 'callable'=>1
+ )
+ %>
</TD>
</TR>
<TR>