diff options
Diffstat (limited to 'httemplate/elements/input-fcc_options.html')
-rw-r--r-- | httemplate/elements/input-fcc_options.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/httemplate/elements/input-fcc_options.html b/httemplate/elements/input-fcc_options.html index 1d56cf274..85a647043 100644 --- a/httemplate/elements/input-fcc_options.html +++ b/httemplate/elements/input-fcc_options.html @@ -88,6 +88,12 @@ function show_fcc_options(id) { out += '<li>Using a <strong>separate</strong> last-mile connection</li>'; } } // is_voip + if ( curr_values['is_mobile'] ) { + out += '<li><strong>Mobile</strong> telephone service</li>'; + if ( curr_values['mobile_direct'] ) { + out += '<li>Billed <strong>directly to the user</strong></li>'; + } + } // is_mobile var out_ul = document.getElementById(id + '_display_fcc_options'); out_ul.innerHTML = out; |