6 |
6 |
<div id="contacts">
|
7 |
7 |
<table>
|
8 |
8 |
<tr>
|
9 |
|
<th align="left">[% 'Contacts' | $T8 %]</th>
|
|
9 |
<th align="right">[% 'Contacts' | $T8 %]</th>
|
10 |
10 |
|
11 |
11 |
<td>
|
12 |
12 |
[%
|
... | ... | |
25 |
25 |
</tr>
|
26 |
26 |
|
27 |
27 |
<tr>
|
28 |
|
<th align="left" nowrap>[% 'Gender' | $T8 %]</th>
|
|
28 |
<th align="right" nowrap>[% 'Gender' | $T8 %]</th>
|
29 |
29 |
|
30 |
30 |
<td>
|
31 |
31 |
[%
|
... | ... | |
39 |
39 |
</tr>
|
40 |
40 |
|
41 |
41 |
<tr>
|
42 |
|
<th align="left" nowrap>[% 'Title' | $T8 %]</th>
|
|
42 |
<th align="right" nowrap>[% 'Title' | $T8 %]</th>
|
43 |
43 |
|
44 |
44 |
<td>
|
45 |
45 |
[% L.input_tag('contact.cp_title', SELF.contact.cp_title, size = 40) %]
|
... | ... | |
48 |
48 |
</tr>
|
49 |
49 |
|
50 |
50 |
<tr>
|
51 |
|
<th align="left" nowrap>[% 'Department' | $T8 %]</th>
|
|
51 |
<th align="right" nowrap>[% 'Department' | $T8 %]</th>
|
52 |
52 |
|
53 |
53 |
<td>
|
54 |
54 |
[% L.input_tag('contact.cp_abteilung', SELF.contact.cp_abteilung, size = 40) %]
|
... | ... | |
57 |
57 |
</tr>
|
58 |
58 |
|
59 |
59 |
<tr>
|
60 |
|
<th align="left" nowrap>[% 'Function/position' | $T8 %]</th>
|
|
60 |
<th align="right" nowrap>[% 'Function/position' | $T8 %]</th>
|
61 |
61 |
|
62 |
62 |
<td>
|
63 |
63 |
[% L.input_tag('contact.cp_position', SELF.contact.cp_position, size = 40) %]
|
... | ... | |
65 |
65 |
</tr>
|
66 |
66 |
|
67 |
67 |
<tr>
|
68 |
|
<th align="left" nowrap>[% 'Given Name' | $T8 %]</th>
|
|
68 |
<th align="right" nowrap>[% 'Given Name' | $T8 %]</th>
|
69 |
69 |
|
70 |
70 |
<td>
|
71 |
71 |
[% L.input_tag('contact.cp_givenname', SELF.contact.cp_givenname, size = 40) %]
|
... | ... | |
73 |
73 |
</tr>
|
74 |
74 |
|
75 |
75 |
<tr>
|
76 |
|
<th align="left" nowrap>[% 'Surname' | $T8 %]</th>
|
|
76 |
<th align="right" nowrap>[% 'Surname' | $T8 %]</th>
|
77 |
77 |
|
78 |
78 |
<td>
|
79 |
79 |
[% L.input_tag('contact.cp_name', SELF.contact.cp_name, size = 40) %]
|
... | ... | |
81 |
81 |
</tr>
|
82 |
82 |
|
83 |
83 |
<tr>
|
84 |
|
<th align="left" nowrap>[% 'E-mail' | $T8 %]</th>
|
|
84 |
<th align="right" nowrap>[% 'E-mail' | $T8 %]</th>
|
85 |
85 |
|
86 |
86 |
<td>
|
87 |
87 |
[% L.input_tag('contact.cp_email', SELF.contact.cp_email, size = 40) %]
|
... | ... | |
89 |
89 |
</tr>
|
90 |
90 |
|
91 |
91 |
<tr>
|
92 |
|
<th align="left" nowrap>[% 'Phone1' | $T8 %]</th>
|
|
92 |
<th align="right" nowrap>[% 'Phone1' | $T8 %]</th>
|
93 |
93 |
|
94 |
94 |
<td>
|
95 |
95 |
[% L.input_tag('contact.cp_phone1', SELF.contact.cp_phone1, size = 40) %]
|
... | ... | |
97 |
97 |
</tr>
|
98 |
98 |
|
99 |
99 |
<tr>
|
100 |
|
<th align="left" nowrap>[% 'Phone2' | $T8 %]</th>
|
|
100 |
<th align="right" nowrap>[% 'Phone2' | $T8 %]</th>
|
101 |
101 |
|
102 |
102 |
<td>
|
103 |
103 |
[% L.input_tag('contact.cp_phone2', SELF.contact.cp_phone2, size = 40) %]
|
... | ... | |
105 |
105 |
</tr>
|
106 |
106 |
|
107 |
107 |
<tr>
|
108 |
|
<th align="left" nowrap>[% 'Fax' | $T8 %]</th>
|
|
108 |
<th align="right" nowrap>[% 'Fax' | $T8 %]</th>
|
109 |
109 |
|
110 |
110 |
<td>
|
111 |
111 |
[% L.input_tag('contact.cp_fax', SELF.contact.cp_fax, size = 40) %]
|
... | ... | |
113 |
113 |
</tr>
|
114 |
114 |
|
115 |
115 |
<tr>
|
116 |
|
<th align="left" nowrap>[% 'Mobile1' | $T8 %]</th>
|
|
116 |
<th align="right" nowrap>[% 'Mobile1' | $T8 %]</th>
|
117 |
117 |
|
118 |
118 |
<td>
|
119 |
119 |
[% L.input_tag('contact.cp_mobile1', SELF.contact.cp_mobile1, size = 40) %]
|
... | ... | |
121 |
121 |
</tr>
|
122 |
122 |
|
123 |
123 |
<tr>
|
124 |
|
<th align="left" nowrap>[% 'Mobile2' | $T8 %]</th>
|
|
124 |
<th align="right" nowrap>[% 'Mobile2' | $T8 %]</th>
|
125 |
125 |
|
126 |
126 |
<td>
|
127 |
127 |
[% L.input_tag('contact.cp_mobile2', SELF.contact.cp_mobile2, size = 40) %]
|
... | ... | |
129 |
129 |
</tr>
|
130 |
130 |
|
131 |
131 |
<tr>
|
132 |
|
<th align="left" nowrap>[% 'Sat. Phone' | $T8 %]</th>
|
|
132 |
<th align="right" nowrap>[% 'Sat. Phone' | $T8 %]</th>
|
133 |
133 |
|
134 |
134 |
<td>
|
135 |
135 |
[% L.input_tag('contact.cp_satphone', SELF.contact.cp_satphone, size = 40) %]
|
... | ... | |
137 |
137 |
</tr>
|
138 |
138 |
|
139 |
139 |
<tr>
|
140 |
|
<th align="left" nowrap>[% 'Sat. Fax' | $T8 %]</th>
|
|
140 |
<th align="right" nowrap>[% 'Sat. Fax' | $T8 %]</th>
|
141 |
141 |
|
142 |
142 |
<td>
|
143 |
143 |
[% L.input_tag('contact.cp_satfax', SELF.contact.cp_satfax, size = 40) %]
|
... | ... | |
145 |
145 |
</tr>
|
146 |
146 |
|
147 |
147 |
<tr>
|
148 |
|
<th align="left" nowrap>[% 'Project' | $T8 %]</th>
|
|
148 |
<th align="right" nowrap>[% 'Project' | $T8 %]</th>
|
149 |
149 |
|
150 |
150 |
<td>
|
151 |
151 |
[% L.input_tag('contact.cp_project', SELF.contact.cp_project, size = 40) %]
|
... | ... | |
153 |
153 |
</tr>
|
154 |
154 |
|
155 |
155 |
<tr>
|
156 |
|
<th align="left" nowrap>[% 'Street' | $T8 %]</th>
|
|
156 |
<th align="right" nowrap>[% 'Street' | $T8 %]</th>
|
157 |
157 |
|
158 |
158 |
<td>
|
159 |
159 |
[% L.input_tag('contact.cp_street', SELF.contact.cp_street, size = 40) %]
|
... | ... | |
168 |
168 |
</tr>
|
169 |
169 |
|
170 |
170 |
<tr>
|
171 |
|
<th align="left" nowrap>[% 'Zip, City' | $T8 %]</th>
|
|
171 |
<th align="right" nowrap>[% 'Zip, City' | $T8 %]</th>
|
172 |
172 |
|
173 |
173 |
<td>
|
174 |
174 |
[% L.input_tag('contact.cp_zipcode', SELF.contact.cp_zipcode, size = 5) %]
|
... | ... | |
177 |
177 |
</tr>
|
178 |
178 |
|
179 |
179 |
<tr>
|
180 |
|
<th align="left" nowrap>[% 'Private Phone' | $T8 %]</th>
|
|
180 |
<th align="right" nowrap>[% 'Private Phone' | $T8 %]</th>
|
181 |
181 |
|
182 |
182 |
<td>
|
183 |
183 |
[% L.input_tag('contact.cp_privatphone', SELF.contact.cp_privatphone, size = 40) %]
|
... | ... | |
185 |
185 |
</tr>
|
186 |
186 |
|
187 |
187 |
<tr>
|
188 |
|
<th align="left" nowrap>[% 'Private E-mail' | $T8 %]</th>
|
|
188 |
<th align="right" nowrap>[% 'Private E-mail' | $T8 %]</th>
|
189 |
189 |
|
190 |
190 |
<td>
|
191 |
191 |
[% L.input_tag('contact.cp_privatemail', SELF.contact.cp_privatemail, size = 40) %]
|
... | ... | |
193 |
193 |
</tr>
|
194 |
194 |
|
195 |
195 |
<tr>
|
196 |
|
<th align="left" nowrap>[% 'Birthday' | $T8 %]</th>
|
|
196 |
<th align="right" nowrap>[% 'Birthday' | $T8 %]</th>
|
197 |
197 |
|
198 |
198 |
<td>
|
199 |
199 |
[% L.date_tag('contact.cp_birthday', SELF.contact.cp_birthday) %]
|
... | ... | |
211 |
211 |
|
212 |
212 |
[% FOREACH var = contact_cvars %]
|
213 |
213 |
<tr>
|
214 |
|
<th align="left" valign="top" nowrap>[% var.config.description | html %]</th>
|
|
214 |
<th align="right" valign="top" nowrap>[% var.config.description | html %]</th>
|
215 |
215 |
|
216 |
216 |
<td valign="top">
|
217 |
217 |
[% INCLUDE 'common/render_cvar_input.html'
|
Kunden-/Lieferantenstammdaten: Feldbeschriftungen einheitlich rechtsbündig anzeigen