X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fpref%2Fpref.html;h=a6b5ba7408653dfcd032c3da646ff9dbd7a7fdb3;hb=408574c3f92b84f422f9a95dd0ab904d9c23ece6;hp=81800bf26252116c194923126a9e8cb09de070c3;hpb=8588f3c0bfbcbeb58dd25a57b5ea375cec00279a;p=freeside.git diff --git a/httemplate/pref/pref.html b/httemplate/pref/pref.html index 81800bf26..a6b5ba740 100644 --- a/httemplate/pref/pref.html +++ b/httemplate/pref/pref.html @@ -5,7 +5,7 @@ <% include('/elements/error.html') %> -Change password (leave blank for no change) +<% mt('Change password (leave blank for no change)') |h %> <% ntable("#cccccc",2) %> @@ -31,6 +31,20 @@ Interface <% ntable("#cccccc",2) %> + Locale: + + + + + + Menu location: > Left
@@ -40,7 +54,15 @@ Interface - Default customer view: + Enable mobile-friendly menu: + + option('mobile_menu') ? 'CHECKED' : '' %>> + + + + + Default customer view: +% my $xls = $curuser->option('spreadsheet_format') eq 'XLS'; +% my $xlsx = $curuser->option('spreadsheet_format') eq 'XLSX'; + + + + + + + +% if ( FS::Conf->new->exists('enable_fuzzy_on_exact') ) { + + + +% } else { + + + Enable approximate customer searching
even when an exact match is found: + + option('enable_fuzzy_on_exact') ? 'CHECKED' : '' %>> + + + +% } + + + Disable HTML editor for customer notes: + + option('disable_html_editor') ? 'CHECKED' : '' %>> + + + + + Disable submission on [Enter] key - one-time charges: + + option('disable_enter_submit_onetimecharge') ? 'CHECKED' : '' %>> + + + + + Don't copy MAC address delimiters to clipboard + + option('enable_mask_clipboard_hack') ? 'CHECKED' : '' %>> + + + + + Scale documents to fit on a letter-size page + + option('printtofit') ? 'CHECKED' : '' %>> + + + + + How many recently-modified customers displayed on dashboard + + + + + + + How many recent outbound emails to show in customer view + + + + +
@@ -76,10 +185,22 @@ Development <% ntable("#cccccc",2) %> + Show customer package timestamps: + option('cust_pkg-display_times') ? 'CHECKED' : '' %>> + + Show internal package numbers: option('show_pkgnum') ? 'CHECKED' : '' %>> + Show config item counts: + option('show_confitem_counts') ? 'CHECKED' : '' %>> + + + Show export data on service view (when available): + option('export_getsettings') ? 'CHECKED' : '' %>> + + Show database profiling (when available): option('show_db_profile') ? 'CHECKED' : '' %>> @@ -87,10 +208,38 @@ Development Save database profiling logs (when available): option('save_db_profile') ? 'CHECKED' : '' %>> + + Save temporary invoice typesetting files: + option('save_tmp_typesetting') ? 'CHECKED' : '' %>> +
+% if ( $curuser->access_right('Employee preference telephony integration') ) { + +SNOM integration +<% ntable("#cccccc",2) %> + + + SNOM IP address + + + + + SNOM HTTP username (if necessary) + + + + + SNOM HTTP password (if necessary) + + + + +
+ +OR

Vonage integration (see Click2Call) <% ntable("#cccccc",2) %> @@ -113,6 +262,7 @@ Vonage integration (see Click2Call
+% } % foreach my $prop (qw( height width availHeight availWidth colorDepth )) { @@ -124,31 +274,29 @@ Vonage integration (see Click2Call <% include('/elements/footer.html') %> -<%once> - - #false laziness w/view/cust_main.cgi - - tie my %customer_views, 'Tie::IxHash', - 'Basics' => 'basics', - 'Notes' => 'notes', #notes and files? - 'Tickets' => 'tickets', - 'Packages' => 'packages', - 'Payment History' => 'payment_history', - #'Change History' => '', - 'Jumbo' => 'jumbo', - ; - - <%init> my $curuser = $FS::CurrentUser::CurrentUser; +#false laziness w/view/cust_main.cgi and Conf.pm (cust_main-default_view) + +tie my %customer_views, 'Tie::IxHash', + 'Basics' => 'basics', + 'Notes' => 'notes', #notes and files? + 'Tickets' => 'tickets', + 'Packages' => 'packages', + 'Payment History' => 'payment_history', +; +$customer_views{'Change History'} = 'change_history' + if $curuser->access_right('View customer history'); +$customer_views{'Jumbo'} = 'jumbo'; + # XSS via your own preferences? seems unlikely, but nice try anyway... ( $curuser->option('menu_position') || 'top' ) =~ /^(\w+)$/ or die "illegal menu_position"; my $menu_position = $1; ( $curuser->option('email_address') ) - =~ /^([,\w\@.]*)$/ or die "illegal email_address"; #too late + =~ /^([,\w\@.\-]*)$/ or die "illegal email_address"; #too late my $email_address = $1;