blob: 7c4aac73b6ad3fc34dc9582d83814968dcd2e760 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<form action="index.html" method="POST" enctype="multipart/form-data">
Query:
<textarea name="query" rows="5" cols="80"><% $query %></textarea><br />
Report type: <select name="type">
<option value="ActivityDetail" <% $ARGS{path} =~ /ActivityDetail/ ? 'selected' : '' %>>Activity detail</option>
<option value="ActivitySummary" <% $ARGS{path} =~ /ActivitySummary/ ? 'selected' : '' %>>Activity summary</option>
<option value="ResolutionComments" <% $ARGS{path} =~ /ResolutionComments/ ? 'selected' : '' %>>Resolution comments</option>
<option value="ResolutionStatistics" <% $ARGS{path} =~ /ResolutionStatistics/ ? 'selected' : '' %>>Resolution statistics</option>
</select><br />
Start date: <input type="text" name="start" value="<% $start %>" /><br />
End date: <input type="text" name="end" value="<% $end %>" /><br />
<& /Elements/Submit, Label => loc('Report') &>
</form>
<%args>
$type => undef
$start => undef
$end => undef
$query => undef
</%args>
<%init>
</%init>
|