diff options
| author | levinse <levinse> | 2011-06-17 06:30:02 +0000 |
|---|---|---|
| committer | levinse <levinse> | 2011-06-17 06:30:02 +0000 |
| commit | 09d21ddeef5b694f6b6d8c71a135af7e23424b0b (patch) | |
| tree | d0c76051cb0c6940b4f89ff724102835e3697095 /httemplate/search/report_cdr.html | |
| parent | 25f254b245759b3cbec176db267e4bf575f9b162 (diff) | |
CDR Report: add top sources, top destinations, and longest calls report options, RT12185
Diffstat (limited to 'httemplate/search/report_cdr.html')
| -rw-r--r-- | httemplate/search/report_cdr.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/httemplate/search/report_cdr.html b/httemplate/search/report_cdr.html index 866606cc1..508bf67ae 100644 --- a/httemplate/search/report_cdr.html +++ b/httemplate/search/report_cdr.html @@ -1,5 +1,13 @@ <% include('/elements/header.html', 'Call Detail Record Search' ) %> +<SCRIPT type="text/javascript"> + function clearfield(which){ + var f = document.getElementById(which); + if ( f == null) return; + f.value = ''; + } +</SCRIPT> + <FORM ACTION="cdr.html" METHOD="GET"> <TABLE BGCOLOR="#cccccc" CELLSPACING=0> @@ -95,6 +103,21 @@ ) %> + <TR> + <TD ALIGN="right">Top</TD> + <TD><INPUT TYPE="TEXT" id="top_dst" NAME="top_dst" SIZE="7" onfocus="clearfield('top_src');"> destinations</TD> + </TR> + + <TR> + <TD ALIGN="right">Top</TD> + <TD><INPUT TYPE="TEXT" id="top_src" NAME="top_src" SIZE="7" onfocus="clearfield('top_dst');"> sources</TD> + </TR> + + <TR> + <TD ALIGN="right"></TD> + <TD><INPUT TYPE="TEXT" NAME="longest" SIZE="7"> longest calls</TD> + </TR> + <% include( '/elements/tr-select-cdrbatch.html' ) %> <TR> |
