diff options
author | Mark Wells <mark@freeside.biz> | 2016-11-23 15:00:20 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-11-23 15:00:48 -0800 |
commit | e42db9683dee82d6991a4205642d5babb3d52f2f (patch) | |
tree | 30cf51a81e7358cb4a20d48aec5faf0e31c275ee /httemplate/pref | |
parent | 3676ccddeab727d3d7a929b1fe4fe19d81e0e8c0 (diff) |
hide the notify-tickets widget if there are no tickets, or if the user turns it off, #73490
Diffstat (limited to 'httemplate/pref')
-rw-r--r-- | httemplate/pref/pref-process.html | 1 | ||||
-rw-r--r-- | httemplate/pref/pref.html | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/httemplate/pref/pref-process.html b/httemplate/pref/pref-process.html index 75e57958f..a87036b36 100644 --- a/httemplate/pref/pref-process.html +++ b/httemplate/pref/pref-process.html @@ -56,6 +56,7 @@ unless ( $error ) { # if ($access_user) { enable_mask_clipboard_hack dashboard_customers customer_view_emails printtofit + hide_notify_tickets email_address snom-ip snom-username snom-password vonage-fromnumber vonage-username vonage-password diff --git a/httemplate/pref/pref.html b/httemplate/pref/pref.html index 0f23a0cba..f26d209d6 100644 --- a/httemplate/pref/pref.html +++ b/httemplate/pref/pref.html @@ -137,6 +137,13 @@ </TR> <TR> + <TH ALIGN="right"><% emt('Hide notification of new ticket activity') %></TH> + <TD ALIGN="left"> + <INPUT TYPE="checkbox" NAME="hide_notify_tickets" VALUE="1" <% $curuser->option('hide_notify_tickets') ? 'CHECKED' : '' %>> + </TD> + </TR> + + <TR> <TH ALIGN="right"><% emt("How many recently-modified customers displayed on dashboard") %></TH> <TD ALIGN="left" COLSPAN=2> <INPUT TYPE="text" NAME="dashboard_customers" VALUE="<% $curuser->option('dashboard_customers') %>"></TD> |