Option to ignore old CDRs, RT#81480
[freeside.git] / httemplate / graph / report_cust_churn.html
1 <% include('/elements/header.html', 'Customer Churn Summary' ) %>
2
3 <FORM ACTION="cust_churn.html" METHOD="GET">
4
5 <TABLE BGCOLOR="#cccccc" CELLSPACING=0>
6
7 <& /elements/tr-select-from_to.html &>
8
9 <& /elements/tr-select-agent.html,
10   'curr_value'    => scalar($cgi->param('agentnum')),
11   'label'         => 'For agent: ',
12   'disable_empty' => 1,
13 &>
14
15 <& /elements/tr-checkbox.html,
16   'field'         => 'normalize',
17   'value'         => 1,
18   'label'         => 'Show percentages'
19 &>
20
21 </TABLE>
22
23 <BR><INPUT TYPE="submit" VALUE="Display">
24 </FORM>
25
26 <% include('/elements/footer.html') %>
27 <%init>
28
29 die "access denied"
30   unless $FS::CurrentUser::CurrentUser->access_right('Customers: Customer churn report');
31
32 </%init>