7 <script type="text/javascript">
8 $(function(){ document.Form.subject.focus(); });
11 <form action="fu.pl" method="post" name="Form" id="form">
14 <table class="tbl-horizontal">
17 <th>[% 'Created for' | $T8 %]</th>
19 <select name="created_for" class="wi-wider">
21 [% FOREACH row = EMPLOYEES %]
22 <option value="[% HTML.escape(row.id) %]">
24 [% HTML.escape(row.name) %] ([% HTML.escape(row.login) %])
26 [% HTML.escape(row.login) %]
34 <th>[% 'Subject' | $T8 %]</th>
35 <td><input type="text" name="subject" class="wi-wider"></td>
38 <th>[% 'Body' | $T8 %]</th>
39 <td><input type="text" name="body" class="wi-wider"></td>
42 <th>[% 'Reference' | $T8 %]</th>
43 <td><input type="text" name="reference" class="wi-wider"></td>
46 <th>[% 'Follow-Up Date' | $T8 %]</th>
48 [% 'From' | $T8 %] [% L.date_tag('follow_up_date_from') %]
49 [% 'To (time)' | $T8 %] [% L.date_tag('follow_up_date_to' ) %]
53 <th>[% 'Created on' | $T8 %]</th>
55 [% 'From' | $T8 %] [% L.date_tag('itime_from') %]
56 [% 'To (time)' | $T8 %] [% L.date_tag('itime_to' ) %]
63 <div class="form-addition control-panel">
64 <h3>[% 'Include in Report' | $T8 %]</h3>
66 <input type="checkbox" name="due_only" id="due_only" value="1" checked> <label for="due_only">[% 'Only due follow-ups' | $T8 %]</label> <br>
67 <input type="checkbox" name="all_users" id="all_users" value="1" checked> <label for="all_users">[% 'Other users\' follow-ups' | $T8 %]</label> <br>
68 <input type="checkbox" name="not_done" id="not_done" value="1" checked> <label for="not_done">[% 'Not done yet' | $T8 %]</label> <br>
69 <input type="checkbox" name="done" id="done" value="1"> <label for="done">[% 'Done' | $T8 %]</label>