diff options
author | Mark Wells <mark@freeside.biz> | 2015-12-22 01:02:34 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-12-22 01:02:34 -0800 |
commit | 659bfc275fe537566bfde62b3a2a7477e10e0bc0 (patch) | |
tree | b25755a0699373064726a7356b5b8793ceea05b6 /httemplate/edit/cust_main | |
parent | 0fc158f576b404002225284b5dfc1634502f7569 (diff) |
always show message_noemail checkbox somewhere, #38727
Diffstat (limited to 'httemplate/edit/cust_main')
-rw-r--r-- | httemplate/edit/cust_main/name.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/httemplate/edit/cust_main/name.html b/httemplate/edit/cust_main/name.html index 74b2a7b5b..4929f8734 100644 --- a/httemplate/edit/cust_main/name.html +++ b/httemplate/edit/cust_main/name.html @@ -37,9 +37,19 @@ : 'label' %>">Email address(es) </TD> <TD BGCOLOR="#FFFF00"> + <SPAN STYLE="width: 200px"> <INPUT TYPE="text" NAME="invoicing_list" VALUE="<% $cust_main->invoicing_list_emailonly_scalar %>"> + </SPAN> </TD> + <TD COLSPAN="5"> + <INPUT TYPE="checkbox" NAME="message_noemail" VALUE="Y" <% + ( $cust_main->message_noemail eq 'Y' ) + ? 'CHECKED' + : '' + %>> <% emt('Do not send notices') %> + </TD> + </TR> % } <%init> |