6 <script type="text/javascript">
7 $(function(){ document.Form.subject.focus(); });
10 <form action="fu.pl" method="post" name="Form" id="form">
14 <td align="right">[% 'Created for' | $T8 %]</td>
16 <select name="created_for">
18 [%- FOREACH row = EMPLOYEES %]
19 <option value="[% HTML.escape(row.id) %]">
21 [%- HTML.escape(row.name) %] ([% HTML.escape(row.login) %])
23 [%- HTML.escape(row.login) %]
32 <td align="right">[% 'Subject' | $T8 %]</td>
33 <td><input name="subject" size="20"></td>
37 <td align="right">[% 'Body' | $T8 %]</td>
38 <td><input name="body" size="20"></td>
42 <td align="right">[% 'Reference' | $T8 %]</td>
43 <td><input name="reference" size="20"></td>
47 <td align="right">[% 'Follow-Up Date' | $T8 %]</td>
50 [% L.date_tag('follow_up_date_from') %]
51 [% 'To (time)' | $T8 %]
52 [% L.date_tag('follow_up_date_to') %]
57 <td align="right">[% 'Created on' | $T8 %]</td>
60 [% L.date_tag('itime_from') %]
61 [% 'To (time)' | $T8 %]
62 [% L.date_tag('itime_to') %]
67 <td align="right">[% 'Include in Report' | $T8 %]</td>
73 <input type="checkbox" name="due_only" id="due_only" value="1" checked>
74 <label for="due_only">[% 'Only due follow-ups' | $T8 %]</label>
78 <input type="checkbox" name="all_users" id="all_users" value="1" checked>
79 <label for="all_users">[% 'Other users\' follow-ups' | $T8 %]</label>
85 <input type="checkbox" name="not_done" id="not_done" value="1" checked>
86 <label for="not_done">[% 'Not done yet' | $T8 %]</label>
90 <input type="checkbox" name="done" id="done" value="1">
91 <label for="done">[% 'Done' | $T8 %]</label>