6 <script type="text/javascript">
7 $(function(){ document.Form.subject.focus(); });
10 <form action="fu.pl" method="post" name="Form">
11 <input type="hidden" name="nextsub" value="report">
16 <td align="right">[% 'Created for' | $T8 %]</td>
18 <select name="created_for">
20 [%- FOREACH row = EMPLOYEES %]
21 <option value="[% HTML.escape(row.id) %]">
23 [%- HTML.escape(row.name) %] ([% HTML.escape(row.login) %])
25 [%- HTML.escape(row.login) %]
34 <td align="right">[% 'Subject' | $T8 %]</td>
35 <td><input name="subject" size="20"></td>
39 <td align="right">[% 'Body' | $T8 %]</td>
40 <td><input name="body" size="20"></td>
44 <td align="right">[% 'Reference' | $T8 %]</td>
45 <td><input name="reference" size="20"></td>
49 <td align="right">[% 'Follow-Up Date' | $T8 %]</td>
52 [% L.date_tag('follow_up_date_from') %]
53 [% 'To (time)' | $T8 %]
54 [% L.date_tag('follow_up_date_to') %]
59 <td align="right">[% 'Created on' | $T8 %]</td>
62 [% L.date_tag('itime_from') %]
63 [% 'To (time)' | $T8 %]
64 [% L.date_tag('itime_to') %]
69 <td align="right">[% 'Include in Report' | $T8 %]</td>
75 <input type="checkbox" name="due_only" id="due_only" value="1" checked>
76 <label for="due_only">[% 'Only due follow-ups' | $T8 %]</label>
80 <input type="checkbox" name="all_users" id="all_users" value="1" checked>
81 <label for="all_users">[% 'Other users\' follow-ups' | $T8 %]</label>
87 <input type="checkbox" name="not_done" id="not_done" value="1" checked>
88 <label for="not_done">[% 'Not done yet' | $T8 %]</label>
92 <input type="checkbox" name="done" id="done" value="1">
93 <label for="done">[% 'Done' | $T8 %]</label>
105 <input type="submit" name="action" value="[% 'Continue' | $T8 %]">