1 [% USE L %][% USE HTML %][% USE T8 %][% USE LxERP %]
3 <input type="hidden" name="cp_id" value="[% HTML.escape(cp_id) %]">
5 <th align="left">[% 'Contacts' | $T8 %]</th>
7 [%- L.select_tag('cp_id', CONTACTS, default = cp_id, with_empty = 1, empty_title = LxERP.t8('New contact'), value_key = 'cp_id', title_sub = \contacts_label,
8 onchange = "\$('#contacts').load('ct.pl?action=get_contact&id=' + \$('#cvid').attr('value') + '&db=' + \$('#db').attr('value') + '&cp_id=' + \$('#cp_id').attr('value'))") %]
13 <th align="left" nowrap>[% 'Gender' | $T8 %]</th>
15 <select id="cp_gender" name="cp_gender">
16 <option value="m"[% IF cp_gender == 'm' %] selected[% END %]>[% 'male' | $T8 %]</option>
17 <option value="f"[% IF cp_gender == 'f' %] selected[% END %]>[% 'female' | $T8 %]</option>
23 <th align="left" nowrap>[% 'Title' | $T8 %]</th>
25 <input id="cp_title" name="cp_title" size="40" maxlength="75" value="[% HTML.escape(cp_title) %]">
26 [% L.select_tag('selected_cp_title', TITLES, with_empty = 1) %]
31 <th align="left" nowrap>[% 'Department' | $T8 %]</th>
33 <input id="cp_abteilung" name="cp_abteilung" size="40" value="[% HTML.escape(cp_abteilung) %]">
34 [% L.select_tag('selected_cp_abteilung', DEPARTMENT, with_empty = 1) %]
39 <th align="left" nowrap>[% 'Given Name' | $T8 %]</th>
40 <td><input id="cp_givenname" name="cp_givenname" size="40" maxlength="75" value="[% HTML.escape(cp_givenname) %]"></td>
44 <th align="left" nowrap>[% 'Name' | $T8 %]</th>
45 <td><input id="cp_name" name="cp_name" size="40" maxlength="75" value="[% HTML.escape(cp_name) %]"></td>
49 <th align="left" nowrap>[% 'E-mail' | $T8 %]</th>
50 <td><input id="cp_email" name="cp_email" size="40" value="[% HTML.escape(cp_email) %]"></td>
54 <th align="left" nowrap>[% 'Phone1' | $T8 %]</th>
55 <td><input id="cp_phone1" name="cp_phone1" size="40" maxlength="75" value="[% HTML.escape(cp_phone1) %]"></td>
59 <th align="left" nowrap>[% 'Phone2' | $T8 %]</th>
60 <td><input id="cp_phone2" name="cp_phone2" size="40" maxlength="75" value="[% HTML.escape(cp_phone2) %]"></td>
64 <th align="left" nowrap>[% 'Fax' | $T8 %]</th>
65 <td><input id="cp_fax" name="cp_fax" size="40" value="[% HTML.escape(cp_fax) %]"></td>
69 <th align="left" nowrap>[% 'Mobile1' | $T8 %]</th>
70 <td><input id="cp_mobile1" name="cp_mobile1" size="40" value="[% HTML.escape(cp_mobile1) %]"></td>
74 <th align="left" nowrap>[% 'Mobile2' | $T8 %]</th>
75 <td><input id="cp_mobile2" name="cp_mobile2" size="40" value="[% HTML.escape(cp_mobile2) %]"></td>
79 <th align="left" nowrap>[% 'Sat. Phone' | $T8 %]</th>
80 <td><input id="cp_satphone" name="cp_satphone" size="40" value="[% HTML.escape(cp_satphone) %]"></td>
84 <th align="left" nowrap>[% 'Sat. Fax' | $T8 %]</th>
85 <td><input id="cp_satfax" name="cp_satfax" size="40" value="[% HTML.escape(cp_satfax) %]"></td>
89 <th align="left" nowrap>[% 'Project' | $T8 %]</th>
90 <td><input id="cp_project" name="cp_project" size="40" value="[% HTML.escape(cp_project) %]"></td>
94 <th align="left" nowrap>[% 'Street' | $T8 %]</th>
95 <td><input id="cp_street" name="cp_street" size="40" maxlength="75" value="[% HTML.escape(cp_street) %]"></td>
99 <th align="left" nowrap>[% 'Zip, City' | $T8 %]</th>
101 <input id="cp_zipcode" name="cp_zipcode" size="5" maxlength="10" value="[% HTML.escape(cp_zipcode) %]">
102 <input id="cp_city" name="cp_city" size="25" maxlength="75" value="[% HTML.escape(cp_city) %]">
107 <th align="left" nowrap>[% 'Private Phone' | $T8 %]</th>
108 <td><input id="cp_privatphone" name="cp_privatphone" size="40" value="[% HTML.escape(cp_privatphone) %]"></td>
112 <th align="left" nowrap>[% 'Private E-mail' | $T8 %]</th>
113 <td><input id="cp_privatemail" name="cp_privatemail" size="40" value="[% HTML.escape(cp_privatemail) %]"></td>
117 <th align="left" nowrap>[% 'Birthday' | $T8 %]</th>
118 <td><input id="cp_birthday" name="cp_birthday" size="40" value="[% HTML.escape(cp_birthday) %]"></td>
122 <td colspan="2"><hr></td>
126 <th align="left" nowrap>[% 'Bcc' | $T8 %]</th>
127 <td><input name="bcc" size="40" value="[% HTML.escape(bcc) %]"></td>
129 [% IF CUSTOM_VARIABLES.Contacts.size %]
131 <td colspan="2"><hr></td>
134 [%- FOREACH var = CUSTOM_VARIABLES.Contacts %]
136 <th align="left" valign="top" nowrap>[% HTML.escape(var.description) %]</th>
137 <td valign="top">[% var.HTML_CODE %]</td>
145 <input type="submit" id="delete_contact" name="action" value="[% 'Delete Contact' | $T8 %]">
148 <br style="clear: left" />