kivitendo/templates/webpages/fu/search.html @ 09e950a5
9934b7c9 | Hans P. Schlaepfer | [% USE T8 %]
|
||
[% USE L %]
|
||||
7a7f33b5 | Moritz Bunkus | [% USE HTML %]
|
||
b485cdc4 | Hans P. Schlaepfer | <h1>[% title %]</h1>
|
||
7a7f33b5 | Moritz Bunkus | |||
b485cdc4 | Hans P. Schlaepfer | <script type="text/javascript">
|
||
$(function(){ document.Form.subject.focus(); });
|
||||
</script>
|
||||
7a7f33b5 | Moritz Bunkus | |||
b485cdc4 | Hans P. Schlaepfer | <form action="fu.pl" method="post" name="Form" id="form">
|
||
7a7f33b5 | Moritz Bunkus | |||
b485cdc4 | Hans P. Schlaepfer | <div class="wrapper">
|
||
<table class="tbl-horizontal">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>[% 'Created for' | $T8 %]</th>
|
||||
7a7f33b5 | Moritz Bunkus | <td>
|
||
b485cdc4 | Hans P. Schlaepfer | <select name="created_for" class="wi-wider">
|
||
<option></option>
|
||||
[% FOREACH row = EMPLOYEES %]
|
||||
<option value="[% HTML.escape(row.id) %]">
|
||||
[% IF row.name %]
|
||||
[% HTML.escape(row.name) %] ([% HTML.escape(row.login) %])
|
||||
[% ELSE %]
|
||||
[% HTML.escape(row.login) %]
|
||||
[% END %]
|
||||
</option>
|
||||
[% END %]
|
||||
</select>
|
||||
7a7f33b5 | Moritz Bunkus | </td>
|
||
b485cdc4 | Hans P. Schlaepfer | </tr>
|
||
<tr>
|
||||
<th>[% 'Subject' | $T8 %]</th>
|
||||
<td><input type="text" name="subject" class="wi-wider"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>[% 'Body' | $T8 %]</th>
|
||||
<td><input type="text" name="body" class="wi-wider"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>[% 'Reference' | $T8 %]</th>
|
||||
<td><input type="text" name="reference" class="wi-wider"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>[% 'Follow-Up Date' | $T8 %]</th>
|
||||
7a7f33b5 | Moritz Bunkus | <td>
|
||
b485cdc4 | Hans P. Schlaepfer | [% 'From' | $T8 %] [% L.date_tag('follow_up_date_from') %]
|
||
[% 'To (time)' | $T8 %] [% L.date_tag('follow_up_date_to' ) %]
|
||||
7a7f33b5 | Moritz Bunkus | </td>
|
||
b485cdc4 | Hans P. Schlaepfer | </tr>
|
||
<tr>
|
||||
<th>[% 'Created on' | $T8 %]</th>
|
||||
7a7f33b5 | Moritz Bunkus | <td>
|
||
b485cdc4 | Hans P. Schlaepfer | [% 'From' | $T8 %] [% L.date_tag('itime_from') %]
|
||
[% 'To (time)' | $T8 %] [% L.date_tag('itime_to' ) %]
|
||||
7a7f33b5 | Moritz Bunkus | </td>
|
||
b485cdc4 | Hans P. Schlaepfer | </tr>
|
||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
7a7f33b5 | Moritz Bunkus | |||
b485cdc4 | Hans P. Schlaepfer | <div class="form-addition control-panel">
|
||
<h3>[% 'Include in Report' | $T8 %]</h3>
|
||||
<div class="list">
|
||||
<input type="checkbox" name="due_only" id="due_only" value="1" checked> <label for="due_only">[% 'Only due follow-ups' | $T8 %]</label> <br>
|
||||
<input type="checkbox" name="all_users" id="all_users" value="1" checked> <label for="all_users">[% 'Other users\' follow-ups' | $T8 %]</label> <br>
|
||||
<input type="checkbox" name="not_done" id="not_done" value="1" checked> <label for="not_done">[% 'Not done yet' | $T8 %]</label> <br>
|
||||
<input type="checkbox" name="done" id="done" value="1"> <label for="done">[% 'Done' | $T8 %]</label>
|
||||
</div>
|
||||
</div>
|
||||
7a7f33b5 | Moritz Bunkus | |||
b485cdc4 | Hans P. Schlaepfer | </form>
|