diff options
author | Mark Wells <mark@freeside.biz> | 2014-11-12 17:17:01 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2014-11-12 17:17:11 -0800 |
commit | f423d4c76d2bef990dc9abeb74256cab9968dd31 (patch) | |
tree | f51618238618e4bcdde27df2178d75ee012a2d01 /httemplate/graph/report_cust_churn.html | |
parent | 19f1e7a1b3aafc2d7181d8cb286f702707ca654b (diff) |
customer churn report, #30132
Diffstat (limited to 'httemplate/graph/report_cust_churn.html')
-rw-r--r-- | httemplate/graph/report_cust_churn.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/httemplate/graph/report_cust_churn.html b/httemplate/graph/report_cust_churn.html new file mode 100644 index 000000000..3f942777f --- /dev/null +++ b/httemplate/graph/report_cust_churn.html @@ -0,0 +1,32 @@ +<% include('/elements/header.html', 'Customer Churn Summary' ) %> + +<FORM ACTION="cust_churn.html" METHOD="GET"> + +<TABLE BGCOLOR="#cccccc" CELLSPACING=0> + +<& /elements/tr-select-from_to.html &> + +<& /elements/tr-select-agent.html, + 'curr_value' => scalar($cgi->param('agentnum')), + 'label' => 'For agent: ', + 'disable_empty' => 1, +&> + +<& /elements/tr-checkbox.html, + 'field' => 'normalize', + 'value' => 1, + 'label' => 'Show percentages' +&> + +</TABLE> + +<BR><INPUT TYPE="submit" VALUE="Display"> +</FORM> + +<% include('/elements/footer.html') %> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('List customers'); + +</%init> |