summaryrefslogtreecommitdiff
path: root/httemplate/view
diff options
context:
space:
mode:
authorMitch Jackson <mitch@freeside.biz>2018-01-27 21:21:59 -0600
committerMitch Jackson <mitch@freeside.biz>2018-09-25 22:36:05 -0400
commit774a522ebf772f28ccf3b19f531e2424c62fcc0f (patch)
treec53970489aaab8f04f58a3d20945642f5fad0371 /httemplate/view
parent4af1201514d154f0f76c35085d6a9f33d85ecfdc (diff)
RT# 73421 Add allow messages flag message_dest to contact_email
Diffstat (limited to 'httemplate/view')
-rw-r--r--httemplate/view/cust_main/contacts_new.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/httemplate/view/cust_main/contacts_new.html b/httemplate/view/cust_main/contacts_new.html
index 2209d30f3..45187b1ad 100644
--- a/httemplate/view/cust_main/contacts_new.html
+++ b/httemplate/view/cust_main/contacts_new.html
@@ -11,6 +11,7 @@
<%$th%>Email</TH>
<%$th%>Send invoices</TH>
<%$th%>Self-service</TH>
+ <%$th%>Send messages</TH>
% foreach my $phone_type (@phone_type) {
<%$th%><% $phone_type->typename |h %></TH>
% }
@@ -33,6 +34,7 @@
% my @contact_email = $contact->contact_email;
<%$td%><% join(', ', map $_->emailaddress, @contact_email) %></TD>
<%$td%><% $cust_contact->invoice_dest eq 'Y' ? 'Yes' : 'No' %></TD>
+ <%$td%><% $cust_contact->message_dest eq 'Y' ? 'Yes' : 'No' %></TD>
<%$td%>
% if ( $cust_contact->selfservice_access ) {
Enabled