Merge branch 'master' of git@vc.linet-services.de:public/lx-office-erp
[kivitendo-erp.git] / templates / webpages / ct / _contact.html
1 [% USE L %][% USE HTML %][% USE T8 %][% USE LxERP %]
2     <table id="contact_table">
3      <input type="hidden" name="cp_id" value="[% HTML.escape(cp_id) %]">
4      <tr>
5       <th align="left">[% 'Contacts' | $T8 %]</th>
6       <td>
7        [%- L.select_tag('cp_id', L.options_for_select(CONTACTS, default => cp_id, with_empty => 1, empty_title => LxERP.t8('New contact'), value => 'cp_id', title_sub => \contacts_label),
8                         onchange => "\$('#contact_table').load('ct.pl?action=get_contact&id=' + \$('#cvid').attr('value') + '&db=' + \$('#db').attr('value') + '&cp_id=' + \$('#cp_id').attr('value'))") %]
9       </td>
10      </tr>
11
12     <tr>
13      <th align="left" nowrap>[% 'Gender' | $T8 %]</th>
14      <td>
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>
18       </select>
19      </td>
20     </tr>
21     <tr>
22
23      <tr>
24       <th align="left" nowrap>[% 'Title' | $T8 %]</th>
25       <td>
26        <input id="cp_title" name="cp_title" size="40" maxlength="75" value="[% HTML.escape(cp_title) %]">&nbsp;
27        [% L.select_tag('selected_cp_title', L.options_for_select(TITLES, with_empty => 1)) %]
28       </td>
29      </tr>
30
31      <tr>
32       <th align="left" nowrap>[% 'Department' | $T8 %]</th>
33       <td>
34        <input id="cp_abteilung" name="cp_abteilung" size="40" value="[% HTML.escape(cp_abteilung) %]">&nbsp;
35        [% L.select_tag('selected_cp_abteilung', L.options_for_select(DEPARTMENT, with_empty => 1)) %]
36       </td>
37      </tr>
38
39      <tr>
40       <th align="left" nowrap>[% 'Given Name' | $T8 %]</th>
41       <td><input id="cp_givenname" name="cp_givenname" size="40" maxlength="75" value="[% HTML.escape(cp_givenname) %]"></td>
42      </tr>
43
44      <tr>
45       <th align="left" nowrap>[% 'Name' | $T8 %]</th>
46       <td><input id="cp_name" name="cp_name" size="40" maxlength="75" value="[% HTML.escape(cp_name) %]"></td>
47      </tr>
48
49      <tr>
50       <th align="left" nowrap>[% 'Phone1' | $T8 %]</th>
51       <td><input id="cp_phone1" name="cp_phone1" size="40" maxlength="75" value="[% HTML.escape(cp_phone1) %]"></td>
52      </tr>
53
54      <tr>
55       <th align="left" nowrap>[% 'Phone2' | $T8 %]</th>
56       <td><input id="cp_phone2" name="cp_phone2" size="40" maxlength="75" value="[% HTML.escape(cp_phone2) %]"></td>
57      </tr>
58
59      <tr>
60       <th align="left" nowrap>[% 'Fax' | $T8 %]</th>
61       <td><input id="cp_fax" name="cp_fax" size="40" value="[% HTML.escape(cp_fax) %]"></td>
62      </tr>
63
64      <tr>
65       <th align="left" nowrap>[% 'Mobile1' | $T8 %]</th>
66       <td><input id="cp_mobile1" name="cp_mobile1" size="40" value="[% HTML.escape(cp_mobile1) %]"></td>
67      </tr>
68
69      <tr>
70       <th align="left" nowrap>[% 'Mobile2' | $T8 %]</th>
71       <td><input id="cp_mobile2" name="cp_mobile2" size="40" value="[% HTML.escape(cp_mobile2) %]"></td>
72      </tr>
73
74      <tr>
75       <th align="left" nowrap>[% 'Sat. Phone' | $T8 %]</th>
76       <td><input id="cp_satphone" name="cp_satphone" size="40" value="[% HTML.escape(cp_satphone) %]"></td>
77      </tr>
78
79      <tr>
80       <th align="left" nowrap>[% 'Sat. Fax' | $T8 %]</th>
81       <td><input id="cp_satfax" name="cp_satfax" size="40" value="[% HTML.escape(cp_satfax) %]"></td>
82      </tr>
83
84      <tr>
85       <th align="left" nowrap>[% 'Project' | $T8 %]</th>
86       <td><input id="cp_project" name="cp_project" size="40" value="[% HTML.escape(cp_project) %]"></td>
87      </tr>
88
89      <tr>
90       <th align="left" nowrap>[% 'E-mail' | $T8 %]</th>
91       <td><input id="cp_email" name="cp_email" size="40" value="[% HTML.escape(cp_email) %]"></td>
92      </tr>
93
94      <tr>
95       <th align="left" nowrap>[% 'Private Phone' | $T8 %]</th>
96       <td><input id="cp_privatphone" name="cp_privatphone" size="40" value="[% HTML.escape(cp_privatphone) %]"></td>
97      </tr>
98
99      <tr>
100       <th align="left" nowrap>[% 'Private E-mail' | $T8 %]</th>
101       <td><input id="cp_privatemail" name="cp_privatemail" size="40" value="[% HTML.escape(cp_privatemail) %]"></td>
102      </tr>
103
104      <tr>
105       <th align="left" nowrap>[% 'Birthday' | $T8 %]</th>
106       <td><input id="cp_birthday" name="cp_birthday" size="40" value="[% HTML.escape(cp_birthday) %]"></td>
107      </tr>
108
109      <tr>
110       <td colspan="2"><hr></td>
111      </tr>
112
113      <tr>
114       <th align="left" nowrap>[% 'Bcc' | $T8 %]</th>
115       <td><input name="bcc" size="40" value="[% HTML.escape(bcc) %]"></td>
116      </tr>
117     </table>