Seltsames Unicodezeichen in SL/IS.pm entfernt.
[kivitendo-erp.git] / templates / webpages / ct / form_header.html
1 [%- USE T8 %]
2 [% USE HTML %][% USE LxERP %]
3 <body>
4
5  <div class="listtop">[% title %]</div>
6
7  <form method="post" name="ct" action="ct.pl" >
8
9   <ul id="maintab" class="shadetabs">
10    <li class="selected"><a href="#" rel="billing">[% 'Billing Address' | $T8 %]</a></li>
11    <li><a href="#" rel="shipto">[% 'Shipping Address' | $T8 %]</a></li>
12    <li><a href="#" rel="contacts">[% 'Contacts' | $T8 %]</a></li>
13    <li><a href="#" rel="deliveries">[% 'Supplies' | $T8 %]</a></li>
14    <li><a href="#" rel="vcnotes">[% 'Notes' | $T8 %]</a></li>
15    [%- IF CUSTOM_VARIABLES.size %]
16    <li><a href="#" rel="custom_variables">[% 'Custom Variables' | $T8 %]</a></li>
17    [%- END %]
18   </ul>
19
20   <div class="tabcontentstyle">
21
22    <div id="billing" class="tabcontent">
23
24     <table width="100%">
25      <tr height="5"></tr>
26      [% IF conf_vertreter %]
27       <tr>
28        <th align="right">[% IF is_customer %][% 'Type of Customer' | $T8 %][%- ELSE %][% 'Type of Vendor' | $T8 %][%- END %]</th>
29        <td>
30         [%- INCLUDE generic/multibox.html
31               name       = 'business',
32               DATA       = all_business,
33               show_empty = 1,
34               id_key     = 'id',
35               label_key  = 'description',
36         -%]
37        </td>
38       </tr>
39       [%- IF id %]
40       <tr>
41        <th align="right">[% 'Representative' | $T8 %]</th>
42        <td>
43         <input type="hidden" name="salesman_id" value="[%- HTML.escape(salesman_id) %]"%>
44         [%- HTML.escape(salesman) %]
45        </td>
46       </tr>
47       [%- END %]
48       <tr>
49        <th align="right">
50         [%- IF !id %]
51          [% 'Representative' | $T8 %]
52         [%- ELSE %]
53          [% 'Change representative to' | $T8 %]
54         [%- END %]
55        </th>
56        <td>
57         [%- INCLUDE generic/multibox.html
58               name       = 'new_salesman_id',
59               DATA       = ALL_SALESMAN_CUSTOMERS,
60               id_key     = 'id',
61               label_key  = 'name',
62               show_empty = id,
63         -%]
64        </td>
65       </tr>
66      [%- END %]
67      <tr>
68       [%- IF is_customer %]
69       <th align="right" nowrap>[% 'Customer Number' | $T8 %]</th>
70       <td><input name="customernumber" size="35" value="[% HTML.escape(customernumber) %]"></td>
71       [%- ELSE %]
72       <th align="right" nowrap>[% 'Vendor Number' | $T8 %]</th>
73       <td><input name="vendornumber" size="35" value="[% HTML.escape(vendornumber) %]"></td>
74       [%- END %]
75      </tr>
76
77      <tr>
78       <th align="right" nowrap>[% 'Greeting' | $T8 %]</th>
79       <td>
80        <input id="greeting" name="greeting" size="30" value="[% HTML.escape(greeting) %]">&nbsp;
81        [%- INCLUDE generic/multibox.html
82              name       = 'selected_company_greeting',
83              DATA       = MB_COMPANY_GREETINGS,
84              show_empty = 1,
85              id_key     = 'id',
86              label_key  = 'description',
87        -%]
88       </td>
89      </tr>
90
91      <tr>
92       <th align="right" nowrap>[% IF is_customer %][% 'Customer Name' | $T8 %][%- ELSE %][% 'Vendor Name' | $T8 %][%- END %]</th>
93       <td><input name="name" size="35" maxlength="75" value="[% HTML.escape(name) %]"></td>
94      </tr>
95
96      <tr>
97       <th align="right" nowrap>[% 'Department' | $T8 %]</th>
98       <td>
99        <input name="department_1" size="16" maxlength="75" value="[% HTML.escape(department_1) %]">
100        <input name="department_2" size="16" maxlength="75" value="[% HTML.escape(department_2) %]">
101       </td>
102      </tr>
103
104      <tr>
105       <th align="right" nowrap>[% 'Street' | $T8 %]</th>
106       <td><input name="street" size="35" maxlength="75" value="[% HTML.escape(street) %]"></td>
107      </tr>
108
109      <tr>
110       <th align="right" nowrap>[% 'Zipcode' | $T8 %]/[% 'City' | $T8 %]</th>
111       <td>
112        <input name="zipcode" size="5" maxlength="10" value="[% HTML.escape(zipcode) %]">
113        <input name="city" size="30" maxlength="75" value="[% HTML.escape(city) %]">
114       </td>
115      </tr>
116
117      <tr>
118       <th align="right" nowrap>[% 'Country' | $T8 %]</th>
119       <td><input name="country" size="35" maxlength="75" value="[% HTML.escape(country) %]"></td>
120      </tr>
121
122      <tr>
123       <th align="right" nowrap>[% 'Contact' | $T8 %]</th>
124       <td><input name="contact" size="28" maxlength="75" value="[% HTML.escape(contact) %]"></td>
125      </tr>
126
127      <tr>
128       <th align="right" nowrap>[% 'Phone' | $T8 %]</th>
129       <td><input name="phone" size="30" maxlength="30" value="[% HTML.escape(phone) %]"></td>
130      </tr>
131
132      <tr>
133       <th align="right" nowrap>[% 'Fax' | $T8 %]</th>
134       <td><input name="fax" size="30" maxlength="30" value="[% HTML.escape(fax) %]"></td>
135      </tr>
136
137      <tr>
138       <th align="right" nowrap>[% 'E-mail' | $T8 %]</th>
139       <td><input name="email" size="45" value="[% HTML.escape(email) %]"></td>
140      </tr>
141
142      <tr>
143       <th align="right" nowrap>
144       [% IF homepage %]<a href="[% HTML.escape(homepage) %]" title="[% 'Open this Website' | $T8 %]" target="_blank">[% 'Homepage' | $T8 %]</a>
145       [% ELSE %][% 'Homepage' | $T8 %]
146       [% END %]
147       </th>
148       <td><input name="homepage" size="45" title="[% 'Example: http://lx-office.org' | $T8 %]" value="[% HTML.escape(homepage) %]"></td>
149      </tr>
150
151      <tr>
152       <th align="right" nowrap>[% 'Username' | $T8 %]</th>
153       <td><input name="username" size="45" value="[% HTML.escape(username) %]"></td>
154      </tr>
155
156      <tr>
157       <th align="right" nowrap>[% 'Password' | $T8 %]</th>
158       <td><input name="user_password" size="45" value="[% HTML.escape(user_password) %]"></td>
159      </tr>
160     </table>
161
162     <table>
163      <tr>
164       <th align="right">[% 'Credit Limit' | $T8 %]</th>
165       <td><input name="creditlimit" size="9" value="[% LxERP.format_amount(creditlimit, 0) %]"></td>
166       <input type="hidden" name="terms" value="[% HTML.escape(terms) %]">
167       <th align="right">[% 'Payment Terms' | $T8 %]</th>
168       <td>
169        [%- INCLUDE generic/multibox.html
170              name       = 'payment_id',
171              DATA       = payment_terms,
172              show_empty = 1,
173              id_key     = 'id',
174              label_key  = 'description',
175        -%]
176       </td>
177
178       <th align="right">[% 'Discount' | $T8 %]</th>
179       <td><input name="discount" size="4" value="[% LxERP.format_amount(discount) %]"> %</td>
180      </tr>
181
182      <tr>
183       <th align="right">[% 'Tax Number / SSN' | $T8 %]</th>
184       <td><input name="taxnumber" size="20" value="[% HTML.escape(taxnumber) %]"></td>
185       <!-- Anm.: R&B 15.11.2008     VAT Reg No ist Ust-ID in GB, aber generell sollte es laut Richardson die sales tax id sein -->
186       <th align="right">[% 'sales tax identification number' | $T8 %]</th>
187       <td><input name="ustid" maxlength="14" size="20" value="[% HTML.escape(ustid) %]"></td>
188       [%- IF is_customer %]
189       <th align="right">[% 'our vendor number at customer' | $T8 %]</th>
190       <td><input name="c_vendor_id" size="10" value="[% HTML.escape(c_vendor_id) %]"></td>
191       [%- ELSE %]
192       <th align="right">[% 'Customer Number' | $T8 %]</th>
193       <td><input name="v_customer_id" size="10" value="[% HTML.escape(v_customer_id) %]"></td>
194       [%- END %]
195      </tr>
196
197      <tr>
198       <th align="right">[% 'Account Number' | $T8 %]</th>
199       <td><input name="account_number" size="10" maxlength="100" value="[% HTML.escape(account_number) %]"></td>
200       <th align="right">[% 'Bank Code Number' | $T8 %]</th>
201       <td><input name="bank_code" size="10" maxlength="100" value="[% HTML.escape(bank_code) %]"></td>
202       <th align="right">[% 'Bank' | $T8 %]</th>
203       <td><input name="bank" size="20" value="[% HTML.escape(bank) %]"></td>
204      </tr>
205
206      <tr>
207       <th align="right">[% 'IBAN' | $T8 %]</th>
208       <td><input name="iban" size="10" maxlength="100" value="[% HTML.escape(iban) %]"></td>
209       <th align="right">[% 'BIC' | $T8 %]</th>
210       <td><input name="bic" size="10" maxlength="100" value="[% HTML.escape(bic) %]"></td>
211      </tr>
212
213      <tr>
214       [% UNLESS conf_vertreter %]
215        <th align="right">[% IF is_customer %][% 'Type of Customer' | $T8 %][% ELSE %][% 'Type of Vendor' | $T8 %][%- END %]</th>
216        <td>
217         [%- INCLUDE generic/multibox.html
218               name       = 'business',
219               DATA       = all_business,
220               show_empty = 1,
221               id_key     = 'id',
222               label_key  = 'description',
223         -%]
224        </td>
225       [%- END %]
226       <th align="right">[% 'Language' | $T8 %]</th>
227       <td>
228        [%- INCLUDE generic/multibox.html
229              name       = 'language_id',
230              DATA       = languages,
231              show_empty = 1,
232              id_key     = 'id',
233              label_key  = 'description',
234        -%]
235       </td>
236
237       [%- IF is_customer %]
238       <th align="right">[% 'Preisklasse' | $T8 %]</th>
239       <td>
240        [%- INCLUDE generic/multibox.html
241              name       = 'klass',
242              DATA       = all_pricegroup,
243              show_empty = 1,
244              id_key     = 'id',
245              label_key  = 'pricegroup',
246        -%]
247       </td>
248       [%- END  %]
249      </tr>
250
251      <tr>
252       <td align="right">[% 'Obsolete' | $T8 %]</td>
253       <td><input name="obsolete" class="checkbox" type="checkbox" value="1" [% IF obsolete %]checked[% END %]></td>
254       <td align="right">[% 'direct debit' | $T8 %]</td>
255       <td><input name="direct_debit" class="checkbox" type="checkbox" value="1" [% IF direct_debit %]checked[% END %]></td>
256      </tr>
257
258      <tr>
259       <th align="right">[% 'Steuersatz' | $T8 %]</th>
260       <td>
261        [%- INCLUDE generic/multibox.html
262              name       = 'taxzone_id',
263              DATA       = ALL_TAXZONES,
264              show_empty = 1,
265              id_key     = 'id',
266              label_key  = 'description',
267        -%]
268       </td>
269       [%- IF is_customer && !conf_vertreter %]
270       <th align="right">[% 'Salesman' | $T8 %]</th>
271       <td>
272        [%- INCLUDE generic/multibox.html
273              name       = 'salesman_id',
274              DATA       = ALL_SALESMEN,
275              show_empty = 1,
276              id_key     = 'id',
277              label_sub  = 'salesman_label',
278        -%]
279       </td>
280       [%- END %]
281      </tr>
282     </table>
283
284     <table>
285      <tr>
286       <th align="left" nowrap>[% 'Internal Notes' | $T8 %]</th>
287      </tr>
288
289      <tr>
290       <td><textarea name="notes" rows="3" cols="60" wrap="soft">[% HTML.escape(notes) %]</textarea></td>
291      </tr>
292     </table>
293
294     <br style="clear: left" />
295    </div>
296
297    <div id="shipto" class="tabcontent">
298
299     <table width="100%">
300      <tr>
301       <th align="right">[% 'Shipping Address' | $T8 %]</th>
302       <td>
303        [%- INCLUDE generic/multibox.html
304              name       = 'shipto_id',
305              id         = 'shipto_id',
306              DATA       = SHIPTO,
307              onChange   = "get_shipto(['shipto_id__' + this.value], ['shiptoname','shiptodepartment_1', 'shiptodepartment_2','shiptostreet','shiptozipcode','shiptocity','shiptocountry','shiptocontact','shiptophone','shiptofax','shiptoemail',enable_delete_shipto,set_gender])",
308              id_key     = 'shipto_id',
309              label_sub  = 'shipto_label',
310              label_key  = 'shipto_label',
311        -%]
312       </td>
313      </tr>
314
315      <tr>
316       <th align="right" nowrap>[% 'Company Name' | $T8 %]</th>
317       <td><input id="shiptoname" name="shiptoname" size="35" maxlength="75" value="[% HTML.escape(shiptoname) %]"></td>
318      </tr>
319
320      <tr>
321       <th align="right" nowrap>[% 'Abteilung' | $T8 %]</th>
322       <td>
323        <input id="shiptodepartment_1" name="shiptodepartment_1" size="16" maxlength="75" value="[% HTML.escape(shiptodepartment_1) %]">
324        <input id="shiptodepartment_2" name="shiptodepartment_2" size="16" maxlength="75" value="[% HTML.escape(shiptodepartment_2) %]">
325       </td>
326      </tr>
327
328      <tr>
329       <th align="right" nowrap>[% 'Street' | $T8 %]</th>
330       <td><input id="shiptostreet" name="shiptostreet" size="35" maxlength="75" value="[% HTML.escape(shiptostreet) %]"></td>
331      </tr>
332
333      <tr>
334       <th align="right" nowrap>[% 'Zipcode' | $T8 %]/[% 'City' | $T8 %]</th>
335       <td>
336        <input id="shiptozipcode" name="shiptozipcode" size="5" maxlength="75" value="[% HTML.escape(shiptozipcode) %]">
337        <input id="shiptocity" name="shiptocity" size="30" maxlength="75" value="[% HTML.escape(shiptocity) %]">
338       </td>
339      </tr>
340
341      <tr>
342       <th align="right" nowrap>[% 'Country' | $T8 %]</th>
343       <td><input id="shiptocountry" name="shiptocountry" size="35" maxlength="75" value="[% HTML.escape(shiptocountry) %]"></td>
344      </tr>
345
346      <tr>
347       <th align="right" nowrap>[% 'Contact' | $T8 %]</th>
348       <td><input id="shiptocontact" name="shiptocontact" size="30" maxlength="75" value="[% HTML.escape(shiptocontact) %]"></td>
349      </tr>
350
351      <tr>
352       <th align="right" nowrap>[% 'Phone' | $T8 %]</th>
353       <td><input id="shiptophone" name="shiptophone" size="30" maxlength="30" value="[% HTML.escape(shiptophone) %]"></td>
354      </tr>
355
356      <tr>
357       <th align="right" nowrap>[% 'Fax' | $T8 %]</th>
358       <td><input id="shiptofax" name="shiptofax" size="30" maxlength="30" value="[% HTML.escape(shiptofax) %]"></td>
359      </tr>
360
361      <tr>
362       <th align="right" nowrap>[% 'E-mail' | $T8 %]</th>
363       <td><input id="shiptoemail" name="shiptoemail" size="45" value="[% HTML.escape(shiptoemail) %]"></td>
364      </tr>
365
366      <tr>
367       <td>&nbsp;</td>
368      </tr>
369      <tr>
370       <td>&nbsp;</td>
371      </tr>
372     </table>
373
374     <input type="submit" id="delete_shipto" name="action" value="[% 'Delete Shipto' | $T8 %]" disabled>
375     <br style="clear: left" />
376    </div>
377
378    <div id="contacts" class="tabcontent">
379     <table>
380      <input type="hidden" name="cp_id" value="[% HTML.escape(cp_id) %]">
381      <tr>
382       <th align="left">[% 'Contacts' | $T8 %]</th>
383       <td>
384        [%- INCLUDE generic/multibox.html
385              name       = 'cp_id',
386              id         = 'cp_id',
387              DATA       = CONTACTS,
388              onChange   = "on_contact_changed()",
389              id_key     = 'cp_id',
390              label_sub  = 'contacts_label',
391        -%]
392       </td>
393      </tr>
394
395     <tr>
396      <th align="left" nowrap>[% 'Gender' | $T8 %]</th>
397      <td>
398       <select id="cp_gender" name="cp_gender">
399        <option value="m"[% IF cp_gender == 'm' %] selected[% END %]>[% 'male' | $T8 %]</option>
400        <option value="f"[% IF cp_gender == 'f' %] selected[% END %]>[% 'female' | $T8 %]</option>
401       </select>
402      </td>
403     </tr>
404     <tr>
405
406      <tr>
407       <th align="left" nowrap>[% 'Title' | $T8 %]</th>
408       <td>
409        <input id="cp_title" name="cp_title" size="40" maxlength="75" value="[% HTML.escape(cp_title) %]">&nbsp;
410        [%- INCLUDE generic/multibox.html
411              name       = 'selected_cp_title',
412              id         = 'selected_cp_title',
413              DATA       = MB_TITLES,
414              show_empty = 1,
415              id_key     = 'id',
416              label_key  = 'description',
417        -%]
418       </td>
419      </tr>
420
421      <tr>
422       <th align="left" nowrap>[% 'Department' | $T8 %]</th>
423       <td>
424        <input id="cp_abteilung" name="cp_abteilung" size="40" value="[% HTML.escape(cp_abteilung) %]">&nbsp;
425        [%- INCLUDE generic/multibox.html
426              name       = 'selected_cp_abteilung',
427              id         = 'selected_cp_abteilung',
428              DATA       = MB_DEPARTMENT,
429              show_empty = 1,
430              id_key     = 'id',
431              label_key  = 'description',
432        -%]
433       </td>
434      </tr>
435
436      <tr>
437       <th align="left" nowrap>[% 'Given Name' | $T8 %]</th>
438       <td><input id="cp_givenname" name="cp_givenname" size="40" maxlength="75" value="[% HTML.escape(cp_givenname) %]"></td>
439      </tr>
440
441      <tr>
442       <th align="left" nowrap>[% 'Name' | $T8 %]</th>
443       <td><input id="cp_name" name="cp_name" size="40" maxlength="75" value="[% HTML.escape(cp_name) %]"></td>
444      </tr>
445
446      <tr>
447       <th align="left" nowrap>[% 'Phone1' | $T8 %]</th>
448       <td><input id="cp_phone1" name="cp_phone1" size="40" maxlength="75" value="[% HTML.escape(cp_phone1) %]"></td>
449      </tr>
450
451      <tr>
452       <th align="left" nowrap>[% 'Phone2' | $T8 %]</th>
453       <td><input id="cp_phone2" name="cp_phone2" size="40" maxlength="75" value="[% HTML.escape(cp_phone2) %]"></td>
454      </tr>
455
456      <tr>
457       <th align="left" nowrap>[% 'Fax' | $T8 %]</th>
458       <td><input id="cp_fax" name="cp_fax" size="40" value="[% HTML.escape(cp_fax) %]"></td>
459      </tr>
460
461      <tr>
462       <th align="left" nowrap>[% 'Mobile1' | $T8 %]</th>
463       <td><input id="cp_mobile1" name="cp_mobile1" size="40" value="[% HTML.escape(cp_mobile1) %]"></td>
464      </tr>
465
466      <tr>
467       <th align="left" nowrap>[% 'Mobile2' | $T8 %]</th>
468       <td><input id="cp_mobile2" name="cp_mobile2" size="40" value="[% HTML.escape(cp_mobile2) %]"></td>
469      </tr>
470
471      <tr>
472       <th align="left" nowrap>[% 'Sat. Phone' | $T8 %]</th>
473       <td><input id="cp_satphone" name="cp_satphone" size="40" value="[% HTML.escape(cp_satphone) %]"></td>
474      </tr>
475
476      <tr>
477       <th align="left" nowrap>[% 'Sat. Fax' | $T8 %]</th>
478       <td><input id="cp_satfax" name="cp_satfax" size="40" value="[% HTML.escape(cp_satfax) %]"></td>
479      </tr>
480
481      <tr>
482       <th align="left" nowrap>[% 'Project' | $T8 %]</th>
483       <td><input id="cp_project" name="cp_project" size="40" value="[% HTML.escape(cp_project) %]"></td>
484      </tr>
485
486      <tr>
487       <th align="left" nowrap>[% 'E-mail' | $T8 %]</th>
488       <td><input id="cp_email" name="cp_email" size="40" value="[% HTML.escape(cp_email) %]"></td>
489      </tr>
490
491      <tr>
492       <th align="left" nowrap>[% 'Private Phone' | $T8 %]</th>
493       <td><input id="cp_privatphone" name="cp_privatphone" size="40" value="[% HTML.escape(cp_privatphone) %]"></td>
494      </tr>
495
496      <tr>
497       <th align="left" nowrap>[% 'Private E-mail' | $T8 %]</th>
498       <td><input id="cp_privatemail" name="cp_privatemail" size="40" value="[% HTML.escape(cp_privatemail) %]"></td>
499      </tr>
500
501      <tr>
502       <th align="left" nowrap>[% 'Birthday' | $T8 %]</th>
503       <td><input id="cp_birthday" name="cp_birthday" size="40" value="[% HTML.escape(cp_birthday) %]"></td>
504      </tr>
505
506      <tr>
507       <td colspan="2"><hr></td>
508      </tr>
509
510      <tr>
511       <th align="left" nowrap>[% 'Bcc' | $T8 %]</th>
512       <td><input name="bcc" size="40" value="[% HTML.escape(bcc) %]"></td>
513      </tr>
514     </table>
515
516     <input type="submit" id="delete_contact" name="action" value="[% 'Delete Contact' | $T8 %]" disabled>
517     <br style="clear: left" />
518    </div>
519
520    <div id="deliveries" class="tabcontent">
521     <table>
522      <tr>
523       <th align="right">[% 'Shipping Address' | $T8 %]</th>
524       <td>
525        [%- INCLUDE generic/multibox.html
526              name       = 'delivery_id',
527              id         = 'delivery_id',
528              DATA       = SHIPTO,
529              onChange   = "get_delivery(['shipto_id__' + this.value, 'from__' + from.value, 'to__' + to.value, 'id__' + cvid.value, 'db__' + db.value], ['delivery'])",
530              id_key     = 'shipto_id',
531              label_sub  = 'shipto_label',
532        -%]
533       </td>
534      </tr>
535
536      <tr>
537       <th align="right" nowrap>[% 'From' | $T8 %]</th>
538       <td>
539        <input id="from" name="from" size="10" maxlength="10" onChange="get_delivery(['shipto_id__' + delivery_id.value, 'from__' + this.value, 'to__' + to.value, 'id__' + cvid.value, 'db__' + db.value], ['delivery'])" value="[% HTML.escape(from) %]">
540        <input type="button" name="fromB" id="trigger_from" value="?">
541       </td>
542       <th align="right" nowrap>[% 'To (time)' | $T8 %]</th>
543       <td>
544        <input id="to" name="to" size="10" maxlength="10" onChange="get_delivery(['shipto_id__' + delivery_id.value, 'from__' + from.value, 'to__' + this.value, 'id__' + cvid.value, 'db__' + db.value], ['delivery'])" value="[% HTML.escape(to) %]">
545        <input type="button" name="toB" id="trigger_to" value="?">
546       </td>
547      </tr>
548
549      <tr>
550       <td colspan="4">
551        <div id="delivery">
552        </div>
553       </td>
554      </tr>
555     </table>
556
557     <br style="clear: left" />
558    </div>
559
560    <div id="vcnotes" class="tabcontent">
561
562     [%- IF NOTES && NOTES.size %]
563     <p>
564      <table>
565       <tr>
566        <th class="listheading">[% 'Delete' | $T8 %]</th>
567        <th class="listheading">[% 'Subject' | $T8 %]</th>
568        <th class="listheading">[% 'Created on' | $T8 %]</th>
569        <th class="listheading">[% 'Created by' | $T8 %]</th>
570        <th class="listheading">[% 'Follow-Up Date' | $T8 %]</th>
571        <th class="listheading">[% 'Follow-Up for' | $T8 %]</th>
572        <th class="listheading">[% 'Follow-Up done' | $T8 %]</th>
573       </tr>
574
575       [%- FOREACH row = NOTES %]
576       <tr class="listrow[% loop.count % 2 %]">
577        <input type="hidden" name="NOTE_id_[% loop.count %]" value="[% HTML.escape(row.id) %]">
578        <td>[% UNLESS NOTE_id && (NOTE_id == row.id) %]<input type="checkbox" name="NOTE_delete_[% loop.count %]" value="1">[% END %]</td>
579        <td><a href="ct.pl?action=edit&db=[% HTML.url(db) %]&id=[% HTML.url(id) %]&edit_note_id=[% HTML.url(row.id) %]">[% HTML.escape(row.subject) %]</a></td>
580        <td>[% HTML.escape(row.created_on) %]</td>
581        <td>[% IF row.created_by_name %][% HTML.escape(row.created_by_name) %][% ELSE %][% HTML.escape(row.created_by_login) %][% END %]</td>
582        <td>[% HTML.escape(row.follow_up_date) %]</td>
583        <td>[% IF row.created_for_name %][% HTML.escape(row.created_for_name) %][% ELSE %][% HTML.escape(row.created_for_login) %][% END %]</td>
584        <td>[% IF row.follow_up_date %][% IF row.follow_up_done %][% 'Yes' | $T8 %][% ELSE %][% 'No' | $T8 %][% END %][% END %]</td>
585       </tr>
586       [%- END %]
587
588       <input type="hidden" name="NOTES_rowcount" value="[% NOTES.size %]">
589
590      </table>
591     </p>
592     [%- END %]
593
594     <div class="listtop">[% IF NOTE_id %][% 'Edit note' | $T8 %][% ELSE %][% 'Add note' | $T8 %][% END %]</div>
595
596     <input type="hidden" name="NOTE_id" value="[% HTML.escape(NOTE_id) %]">
597     <input type="hidden" name="FU_id" value="[% HTML.escape(FU_id) %]">
598
599     <p>
600      <table>
601       <tr>
602        <td valign="right">[% 'Subject' | $T8 %]</td>
603        <td><input name="NOTE_subject" value="[% HTML.escape(NOTE_subject) %]" size="50"></td>
604       </tr>
605
606       <tr>
607        <td valign="right" align="top">[% 'Body' | $T8 %]</td>
608        <td align="top"><textarea cols="50" rows="10" name="NOTE_body">[% HTML.escape(NOTE_body) %]</textarea></td>
609       </tr>
610
611       <tr>
612        <td valign="right">[% 'Follow-Up On' | $T8 %]</td>
613        <td>
614         <input name="FU_date" id="FU_date" value="[% HTML.escape(FU_date) %]" size="12">
615         <input type="button" name="FU_date_button" id="FU_date_trigger" value="?">
616         [% 'for' | $T8 %]
617         <select name="FU_created_for_user">
618          [%- FOREACH row = ALL_EMPLOYEES %]
619          <option value="[% HTML.escape(row.id) %]"[% IF (NOTE_id && (row.id == FU_created_for_user)) || (row.login == login) %] selected[% END %]>
620           [%- IF row.name %][%- HTML.escape(row.name) %] ([% HTML.escape(row.login) %])[% ELSE %][% HTML.escape(row.login) %][% END %]
621          </option>
622          [%- END %]
623         </select>
624        </td>
625       </tr>
626
627       <tr>
628        <td>&nbsp;</td>
629        <td>
630         <input type="checkbox" name="FU_done" id="FU_done" value="1"[% IF FU_done %] checked[% END %]>
631         <label for="FU_done">[% 'Follow-Up done' | $T8 %]</label>
632        </td>
633       </tr>
634      </table>
635     </p>
636
637     <br style="clear: left" />
638    </div>
639
640    [%- IF CUSTOM_VARIABLES.size %]
641    <div id="custom_variables" class="tabcontent">
642
643     <p>
644      <table>
645       [%- FOREACH var = CUSTOM_VARIABLES %]
646       <tr>
647        <td align="right" valign="top">[% HTML.escape(var.description) %]</td>
648        <td valign="top">[% var.HTML_CODE %]</td>
649       </tr>
650       [%- END %]
651      </table>
652     </p>
653
654     <br style="clear: left" />
655    </div>
656    [%- END %]
657
658   </div>
659
660   <script type="text/javascript" src="js/jquery.js"></script>
661   <script type="text/javascript">
662    <!--
663    function set_gender(gender) {
664      var s = document.getElementById('cp_gender');
665      if (s) {
666        s.selectedIndex = (gender == 'f') ? 1 : 0;
667      }
668    }
669
670    function on_contact_changed() {
671      get_contact(['cp_id__' + $('#cp_id').attr('value')],
672                  ['cp_name','cp_title','cp_givenname','cp_phone1','cp_phone2','cp_email','cp_abteilung','cp_fax','cp_mobile1','cp_mobile2',
673                   'cp_satphone','cp_satfax','cp_project','cp_privatphone','cp_privatemail','cp_birthday',enable_delete_contact,set_gender]);
674      $('#selected_cp_title').attr('selectedIndex', 0);
675      $('#selected_cp_abteilung').attr('selectedIndex', 0);
676    }
677   -->
678
679   </script>