blob: 07d497fc54c64e4114e491f1056f2d62471c0098 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<& /elements/header.html, 'Time worked per-customer summary' &>
<FORM ACTION="rt_cust.html" METHOD="GET">
<TABLE>
<& /elements/tr-select-cust_main-status.html,
'label' => emt('Status'),
&>
<& /elements/tr-input-beginning_ending.html &>
<!--
<& /elements/tr-select.html,
label => 'Time category:',
field => 'category',
options => [ '', 'development', 'support' ],
option_labels => { '' => 'all' },
curr_value => 'development',
&>
<& /elements/tr-select-otaker.html &>
-->
</TABLE>
<BR>
<INPUT TYPE="submit" VALUE="Search">
</FORM>
<& /elements/footer.html &>
<%init>
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('List rating data');
my $conf = new FS::Conf;
</%init>
|