v4 style
[freeside.git] / httemplate / search / report_timeworked.html
1 <% include( '/elements/header.html', 'Time Worked' ) %>
2
3 <FORM ACTION="timeworked.html" METHOD="GET">
4
5 <TABLE BGCOLOR="#cccccc" CELLSPACING=0>
6
7   <TR>
8     <TH CLASS="background" COLSPAN=2 ALIGN="left">
9       <FONT SIZE="+1">Search options</FONT>
10     </TH>
11   </TR>
12
13   <% include ('/elements/tr-input-beginning_ending.html') %>
14
15   <& /elements/tr-select.html,
16       label       => 'Time category:',
17       field       => 'category',
18       options     => [ 'development', 'support' ]
19   &>
20
21 </TABLE>
22
23 <BR>
24 <INPUT TYPE="submit" VALUE="Get Report">
25
26 </FORM>
27
28 <% include('/elements/footer.html') %>
29 <%init>
30
31 die "access denied"
32   unless $FS::CurrentUser::CurrentUser->access_right('Time queue');
33
34 </%init>