CustomerVendor: Tabs in eigene Dateien ausgelagert
[kivitendo-erp.git] / templates / webpages / customer_vendor / tabs / contacts.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE LxERP %]
4 [%- USE L %]
5
6 <div id="contacts">
7   <table>
8     <tr>
9       <th align="left">[% 'Contacts' | $T8 %]</th>
10
11       <td>
12         [%
13           L.select_tag(
14             'contact.cp_id',
15             SELF.contacts,
16             default = SELF.contact.cp_id,
17             with_empty = 1,
18             empty_title = LxERP.t8('New contact'),
19             value_key = 'cp_id',
20             title_key = 'full_name',
21             onchange = "namespace('kivi.CustomerVendor').selectContact();")
22         %]
23       </td>
24     </tr>
25
26     <tr>
27       <th align="left" nowrap>[% 'Gender' | $T8 %]</th>
28
29       <td>
30         [%
31           L.select_tag(
32             'contact.cp_gender',
33             [['m', LxERP.t8('male')], ['f', LxERP.t8('female')]],
34             default = SELF.contact.cp_gender
35           )
36         %]
37       </td>
38     </tr>
39
40     <tr>
41       <th align="left" nowrap>[% 'Title' | $T8 %]</th>
42
43       <td>
44         [% L.input_tag('contact.cp_title', SELF.contact.cp_title, size = 40 maxlength = 75) %]
45         [% L.select_tag('contact_cp_title_select', SELF.all_titles, with_empty = 1, onchange = '$("#contact_cp_title").val(this.value);') %]
46       </td>
47     </tr>
48
49     <tr>
50       <th align="left" nowrap>[% 'Department' | $T8 %]</th>
51
52       <td>
53         [% L.input_tag('contact.cp_abteilung', SELF.contact.cp_abteilung, size = 40) %]
54         [% L.select_tag('contact_cp_abteilung_select', SELF.all_departments, default = SELF.contact.cp_abteilung,  with_empty = 1, onchange = '$("#contact_cp_abteilung").val(this.value);') %]
55       </td>
56     </tr>
57
58     <tr>
59       <th align="left" nowrap>[% 'Function/position' | $T8 %]</th>
60
61       <td>
62         [% L.input_tag('contact.cp_position', SELF.contact.cp_position, size = 40, maxlength = 75) %]
63       </td>
64     </tr>
65
66     <tr>
67       <th align="left" nowrap>[% 'Given Name' | $T8 %]</th>
68
69       <td>
70         [% L.input_tag('contact.cp_givenname', SELF.contact.cp_givenname, size = 40, maxlength = 75) %]
71       </td>
72     </tr>
73
74     <tr>
75       <th align="left" nowrap>[% 'Name' | $T8 %]</th>
76
77       <td>
78         [% L.input_tag('contact.cp_name', SELF.contact.cp_name, size = 40, maxlength = 75) %]
79       </td>
80     </tr>
81
82     <tr>
83       <th align="left" nowrap>[% 'E-mail' | $T8 %]</th>
84
85       <td>
86         [% L.input_tag('contact.cp_email', SELF.contact.cp_email, size = 40) %]
87       </td>
88     </tr>
89
90     <tr>
91       <th align="left" nowrap>[% 'Phone1' | $T8 %]</th>
92
93       <td>
94         [% L.input_tag('contact.cp_phone1', SELF.contact.cp_phone1, size = 40, maxlength = 75) %]
95       </td>
96     </tr>
97
98     <tr>
99       <th align="left" nowrap>[% 'Phone2' | $T8 %]</th>
100
101       <td>
102         [% L.input_tag('contact.cp_phone2', SELF.contact.cp_phone2, size = 40, maxlength = 75) %]
103       </td>
104     </tr>
105
106     <tr>
107       <th align="left" nowrap>[% 'Fax' | $T8 %]</th>
108
109       <td>
110         [% L.input_tag('contact.cp_fax', SELF.contact.cp_fax, size = 40) %]
111       </td>
112     </tr>
113
114     <tr>
115       <th align="left" nowrap>[% 'Mobile1' | $T8 %]</th>
116
117       <td>
118         [% L.input_tag('contact.cp_mobile1', SELF.contact.cp_mobile1, size = 40) %]
119       </td>
120     </tr>
121
122     <tr>
123       <th align="left" nowrap>[% 'Mobile2' | $T8 %]</th>
124
125       <td>
126         [% L.input_tag('contact.cp_mobile2', SELF.contact.cp_mobile2, size = 40) %]
127       </td>
128     </tr>
129
130     <tr>
131       <th align="left" nowrap>[% 'Sat. Phone' | $T8 %]</th>
132
133       <td>
134         [% L.input_tag('contact.cp_satphone', SELF.contact.cp_satphone, size = 40) %]
135       </td>
136     </tr>
137
138     <tr>
139       <th align="left" nowrap>[% 'Sat. Fax' | $T8 %]</th>
140
141       <td>
142         [% L.input_tag('contact.cp_satfax', SELF.contact.cp_satfax, size = 40) %]
143       </td>
144     </tr>
145
146     <tr>
147       <th align="left" nowrap>[% 'Project' | $T8 %]</th>
148
149       <td>
150         [% L.input_tag('contact.cp_project', SELF.contact.cp_project, size = 40) %]
151       </td>
152     </tr>
153
154     <tr>
155       <th align="left" nowrap>[% 'Street' | $T8 %]</th>
156
157       <td>
158         [% L.input_tag('contact.cp_street', SELF.contact.cp_street, size = 40, maxlength = 75) %]
159
160         <a href="#" onclick="namespace('kivi.CustomerVendor').showMap('contact_cp_');" title="[% 'Map' | $T8 %]">
161           <img src="image/map.png" alt="[% 'Map' | $T8 %]" />
162         </a>
163       </td>
164     </tr>
165
166     <tr>
167       <th align="left" nowrap>[% 'Zip, City' | $T8 %]</th>
168
169       <td>
170         [% L.input_tag('contact.cp_zipcode', SELF.contact.cp_zipcode, size = 5, maxlength = 10) %]
171         [% L.input_tag('contact.cp_city', SELF.contact.cp_city, size = 25, maxlength = 75) %]
172       </td>
173     </tr>
174
175     <tr>
176       <th align="left" nowrap>[% 'Private Phone' | $T8 %]</th>
177
178       <td>
179         [% L.input_tag('contact.cp_privatphone', SELF.contact.cp_privatphone, size = 40) %]
180       </td>
181     </tr>
182
183     <tr>
184       <th align="left" nowrap>[% 'Private E-mail' | $T8 %]</th>
185
186       <td>
187         [% L.input_tag('contact.cp_privatemail', SELF.contact.cp_privatemail, size = 40) %]
188       </td>
189     </tr>
190
191     <tr>
192       <th align="left" nowrap>[% 'Birthday' | $T8 %]</th>
193
194       <td>
195         [% L.date_tag('contact.cp_birthday', SELF.contact.cp_birthday) %]
196       </td>
197     </tr>
198
199     [% contact_cvars = SELF.contact.cvars_by_config %]
200
201     [% IF ( contact_cvars.size ) %]
202       <tr>
203         <td colspan="2">
204           <hr>
205         </td>
206       </tr>
207
208       [% FOREACH var = contact_cvars %]
209         <tr>
210           <th align="left" valign="top" nowrap>[% var.config.description | html %]</th>
211
212           <td valign="top">
213             [%
214               INCLUDE 'customer_vendor/render_cvar_input.html'
215                       cvar_name_prefix = 'contact_cvars.'
216             %]
217           </td>
218         </tr>
219       [% END %]
220     [% END %]
221
222   </table>
223
224   [% L.button_tag('submitInputButton(this);', LxERP.t8('Delete Contact'), name = 'action_delete_contact', class = 'submit') %]
225   [% IF ( !SELF.contact.cp_id ) %]
226     <script type="text/javascript">
227       $('#action_delete_contact').hide();
228     </script>
229   [% END %]
230 </div>