Zwei neue Features:
[kivitendo-erp.git] / templates / webpages / fu / search_de.html
1 [% USE HTML %]
2 <body onload="on_load()">
3
4  <script type="text/javascript">
5   <!--
6       function on_load() {
7         Calendar.setup({ inputField : "follow_up_date_from", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BR", button : "follow_up_date_from_trigger" });
8         Calendar.setup({ inputField : "follow_up_date_to",   ifFormat :"[% myconfig_jsc_dateformat %]", align : "BR", button : "follow_up_date_to_trigger" });
9         Calendar.setup({ inputField : "itime_from",          ifFormat :"[% myconfig_jsc_dateformat %]", align : "BR", button : "itime_from_trigger" });
10         Calendar.setup({ inputField : "itime_to",            ifFormat :"[% myconfig_jsc_dateformat %]", align : "BR", button : "itime_to_trigger" });
11         document.Form.subject.focus();
12       }
13     -->
14  </script>
15
16  <div class="listtop">[% title %]</div>
17
18  <form action="fu.pl" method="post" name="Form">
19   <input type="hidden" name="nextsub" value="report">
20
21   <p>
22    <table>
23     <tr>
24      <td align="right">Erstellt f&uuml;r</td>
25      <td>
26       <select name="created_for">
27        <option></option>
28        [%- FOREACH row = EMPLOYEES %]
29        <option value="[% HTML.escape(row.id) %]">
30         [%- IF row.name %]
31         [%- HTML.escape(row.name) %] ([% HTML.escape(row.login) %])
32         [%- ELSE %]
33         [%- HTML.escape(row.login) %]
34         [%- END %]
35        </option>
36        [%- END %]
37       </select>
38      </td>
39     </tr>
40
41     <tr>
42      <td align="right">Betreff</td>
43      <td><input name="subject" size="20"></td>
44     </tr>
45
46     <tr>
47      <td align="right">Text</td>
48      <td><input name="body" size="20"></td>
49     </tr>
50
51     <tr>
52      <td align="right">Referenz</td>
53      <td><input name="reference" size="20"></td>
54     </tr>
55
56     <tr>
57      <td align="right">Wiedervorlagedatum</td>
58      <td>
59       Von
60       <input name="follow_up_date_from" id="follow_up_date_from" size="12">
61       <input type="button" name="follow_up_date_from_button" id="follow_up_date_from_trigger" value="?">
62       Bis
63       <input name="follow_up_date_to" id="follow_up_date_to" size="12">
64       <input type="button" name="follow_up_date_to_button" id="follow_up_date_to_trigger" value="?">
65      </td>
66     </tr>
67
68     <tr>
69      <td align="right">Erstellt am</td>
70      <td>
71       Von
72       <input name="itime_from" id="itime_from" size="12">
73       <input type="button" name="itime_from_button" id="itime_from_trigger" value="?">
74       Bis
75       <input name="itime_to" id="itime_to" size="12">
76       <input type="button" name="itime_to_button" id="itime_to_trigger" value="?">
77      </td>
78     </tr>
79
80     <tr>
81      <td align="right">In Bericht aufnehmen</td>
82      <td>
83
84       <table>
85        <tr>
86         <td>
87          <input type="checkbox" name="due_only" id="due_only" value="1" checked>
88          <label for="due_only">Nur f&auml;llige Wiedervorlagen</label>
89         </td>
90
91         <td>
92          <input type="checkbox" name="all_users" id="all_users" value="1" checked>
93          <label for="all_users">Wiedervorlagen anderer Benutzer</label>
94         </td>
95        </tr>
96
97        <tr>
98         <td>
99          <input type="checkbox" name="not_done" id="not_done" value="1" checked>
100          <label for="not_done">Noch nicht fertig</label>
101         </td>
102
103         <td>
104          <input type="checkbox" name="done" id="done" value="1">
105          <label for="done">Fertig</label>
106         </td>
107        </tr>
108       </table>
109
110      </td>
111     </tr>
112
113    </table>
114   </p>
115
116   <p>
117    <input type="submit" name="action" value="Weiter">
118   </p>
119  </form>
120
121 </body>
122 </html>