stray closing /TABLE in the no-ticket case
[freeside.git] / httemplate / search / report_prospect_main.html
1 <& /elements/header.html, 'Prospect Report' &>
2
3 <FORM ACTION="prospect_main.html" METHOD="GET">
4
5   <TABLE BGCOLOR="#cccccc" CELLSPACING=0>
6
7     <TR>
8       <TH CLASS="background" COLSPAN=2 ALIGN="left"><FONT SIZE="+1">Search options</FONT></TH>
9     </TR>
10
11     <& /elements/tr-select-agent.html,
12          'curr_value'    => scalar($cgi->param('agentnum')),
13          'disable_empty' => 0,
14     &>
15
16     <& /elements/tr-select-part_referral.html,
17          'curr_value'    => scalar($cgi->param('refnum')),
18          'empty_label'   => 'all',
19          'disable_empty' => 0,
20     &>
21
22   </TABLE>
23
24 <BR>
25 <INPUT TYPE="submit" VALUE="Get Report">
26
27 </FORM>
28
29 <& /elements/footer.html &>
30 <%init>
31
32 die "access denied"
33   unless $FS::CurrentUser::CurrentUser->access_right('List prospects');
34
35 my $conf = new FS::Conf;
36
37 </%init>