diff options
author | ivan <ivan> | 2008-03-26 02:27:06 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-03-26 02:27:06 +0000 |
commit | 12eecccdb5cc0b5e5f4f0122cade7e01f96d1de5 (patch) | |
tree | 151831a543e0676fabac21cbe9238dcf6d72d625 /httemplate/search/report_cdr.html | |
parent | e20fe4173471fa7e80d3e0d66dd60eb01c581d1d (diff) |
add ability to query ranges of duration & billable seconds to CDR report
Diffstat (limited to 'httemplate/search/report_cdr.html')
-rw-r--r-- | httemplate/search/report_cdr.html | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/httemplate/search/report_cdr.html b/httemplate/search/report_cdr.html index 06f0b1aae..1c191506f 100644 --- a/httemplate/search/report_cdr.html +++ b/httemplate/search/report_cdr.html @@ -2,7 +2,7 @@ <FORM ACTION="cdr.html" METHOD="GET"> -<TABLE> +<TABLE BGCOLOR="#cccccc" CELLSPACING=0> <TR> <TD ALIGN="right">Status: </TD> <TD> @@ -30,6 +30,18 @@ </TD> </TR> + <% include( '/elements/tr-input-lessthan_greaterthan.html', + 'label' => 'Duration (sec)', + 'field' => 'duration', + ) + %> + + <% include( '/elements/tr-input-lessthan_greaterthan.html', + 'label' => 'Billable duration (sec)', + 'field' => 'billsec', + ) + %> + </TABLE> <BR> |