84b2c7d4a462f9c24c049966dedac5d89660826b
[kivitendo-erp.git] / templates / webpages / am / config_de.html
1 [% USE HTML %]<body onLoad="fokus()">
2
3  <div class="listtop">[% title %]</div>
4
5  <form method="post" action="am.pl" name="Form">
6
7   <ul id="maintab" class="shadetabs">
8    <li class="selected"><a href="#" rel="page_personal_settings">Pers&ouml;nliche Einstellungen</a></li>
9    <li><a href="#" rel="page_display_options">Anzeigeoptionen</a></li>
10    <li><a href="#" rel="page_print_options">Druckoptionen</a></li>
11    <li><a href="#" rel="page_todo_list_options">Aufgabenlistenoptionen</a></li>
12   </ul>
13
14   <input type="hidden" name="type" value="preferences">
15   <input type="hidden" name="role" value="[% HTML.escape(myconfig_role) %]">
16
17   <div class="tabcontentstyle">
18
19    <div id="page_personal_settings" class="tabcontent">
20
21     <table>
22      <tr>
23       <th align="right">Name</th>
24       <td><input name="name" size="15" value="[% HTML.escape(myconfig_name) %]"></td>
25      </tr>
26
27      <tr>
28       <th align="right">Passwort</th>
29       <td>
30        [%- IF CAN_CHANGE_PASSWORD %]
31        <input type="password" name="new_password" size="10" value="********">
32        [%- ELSE %]
33        <input type="hidden" name="new_password" value="********">
34        [%- END %]
35       </td>
36      </tr>
37
38      <tr>
39       <th align="right">eMail</th>
40       <td><input name="email" size="30" value="[% HTML.escape(myconfig_email) %]"></td>
41      </tr>
42
43      <tr valign="top">
44       <th align="right">Unterschrift</th>
45       <td><textarea name="signature" rows="3" cols="50">[% HTML.escape(myconfig_signature) %]</textarea></td>
46      </tr>
47
48      <tr>
49       <th align="right">Telefon</th>
50       <td><input name="tel" size="14" value="[% HTML.escape(myconfig_tel) %]"></td>
51      </tr>
52
53      <tr>
54       <th align="right">Fax</th>
55       <td><input name="fax" size="14" value="[% HTML.escape(myconfig_fax) %]"></td>
56      </tr>
57      <tr>
58       <th align="right">Firma</th>
59       <td><input name="company" size="30" value="[% HTML.escape(myconfig_company) %]"></td>
60      </tr>
61      <tr valign="top">
62       <th align="right">Adresse</th>
63       <td><textarea name="address" rows="4" cols="50">[% HTML.escape(myconfig_address) %]</textarea></td>
64      </tr>
65     </table>
66
67     <br style="clear: left" />
68    </div>
69
70    <div id="page_display_options" class="tabcontent">
71
72     <table>
73      <tr>
74       <th align="right">Datumsformat</th>
75       <td>
76        <select name="dateformat">
77         [%- FOREACH row = DATEFORMATS %]
78         <option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option>
79         [%- END %]
80        </select>
81       </td>
82      </tr>
83      <tr>
84       <th align="right">Zahlenformat (Ausgabe)</th>
85       <td>
86        <select name="numberformat">
87         [%- FOREACH row = NUMBERFORMATS %]
88         <option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option>
89         [%- END %]
90        </select>
91       </td>
92      </tr>
93
94      <tr>
95       <th align="right">Auswahllistenbegrenzung</th>
96       <td><input name="vclimit" size="10" value="[% HTML.escape(myconfig_vclimit) %]"></td>
97      </tr>
98
99      <tr>
100       <th align="right">Sprache</th>
101       <td>
102        <select name="countrycode">
103         [%- FOREACH row = COUNTRYCODES %]
104         <option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option>
105         [%- END %]
106        </select>
107       </td>
108      </tr>
109
110      <tr>
111       <th align="right">Stilvorlage</th>
112       <td>
113        <select name="usestylesheet">
114         [%- FOREACH row = STYLESHEETS %]
115         <option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option>
116         [%- END %]
117        </select>
118       </td>
119      </tr>
120
121      <tr>
122       <th align="right">Menüsetup</th>
123       <td>
124        <select name="menustyle">
125         <option value="v3"[% IF myconfig_menustyle == 'v3' %] selected[% END %]>Oben (mit CSS)</option>
126         <option value="neu"[% IF myconfig_menustyle == 'neu' %] selected[% END %]>Oben (mit Javascript)</option>
127         <option value="xml"[% IF myconfig_menustyle == 'xml' %] selected[% END %]>Oben (XUL; nur f&uuml;r Mozilla Firefox)</option>
128         <option value="old"[% IF myconfig_menustyle == 'old' %] selected[% END %]>Alt (seitlich)</option>
129        </select>
130       </td>
131      </tr>
132
133      <tr valign="top">
134       <th align="right">Favoriten</th>
135       <td><textarea name="favorites" rows="4" cols="50">[% HTML.escape(myconfig_favorites) %]</textarea></td>
136      </tr>
137
138      <tr>
139       <th align="right">Formulardetails (zweite Positionszeile)</th>
140       <td>
141        <select name="show_form_details">
142         <option value="1"[% IF  myconfig_show_form_details %] selected[% END %]>Standardm&auml;&szlig;ig anzeigen</option>
143         <option value="0"[% IF !myconfig_show_form_details %] selected[% END %]>Standardm&auml;&szlig;ig verstecken</option>
144        </select>
145       </td>
146      </tr>
147     </table>
148
149     <br style="clear: left" />
150    </div>
151
152    <div id="page_print_options" class="tabcontent">
153
154     <table>
155      <input name="printer" type="hidden" value="[% HTML.escape(myconfig_printer) %]">
156
157      <tr>
158       <th align="right">Standardvorlagenformat</th>
159       <td>
160        <select name="template_format">
161         [%- FOREACH row = TEMPLATE_FORMATS %]
162         <option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option>
163         [%- END %]
164        </select>
165       </td>
166      </tr>
167
168      <tr>
169       <th align="right">Standardausgabekanal</th>
170       <td>
171        <select name="default_media">
172         [%- FOREACH row = MEDIA %]
173         <option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option>
174         [%- END %]
175        </select>
176       </td>
177      </tr>
178
179      <tr>
180       <th align="right">Standarddrucker</th>
181       <td>
182        <select name="default_printer_id">
183         [%- FOREACH row = PRINTERS %]
184         <option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option>
185         [%- END %]
186        </select>
187       </td>
188      </tr>
189
190      <tr>
191       <th align="right">Anzahl Kopien</th>
192       <td><input name="copies" size="10" value="[% HTML.escape(myconfig_copies) %]"></td>
193      </tr>
194     </table>
195
196     <br style="clear: left" />
197    </div>
198
199    <div id="page_todo_list_options" class="tabcontent">
200
201     <table>
202      <tr>
203       <th align="right">Aufgabenliste nach dem Anmelden anzeigen</th>
204       <td colspan="2">
205        <input type="radio" name="todo_cfg.show_after_login" id="todo_cfg_show_after_login_1" value="1"[% IF todo_cfg.show_after_login %] checked[% END %]>
206        <label for="todo_cfg_show_after_login_1">Ja</label>
207        <input type="radio" name="todo_cfg.show_after_login" id="todo_cfg_show_after_login_0" value="0"[% IF !todo_cfg.show_after_login %] checked[% END %]>
208        <label for="todo_cfg_show_after_login_0">Nein</label>
209       </td>
210      </tr>
211
212      <tr class="listheading">
213       <th colspan="3">Konfiguration f&uuml;r die einzelnen Aufgabenlistenpunkte</th>
214      </tr>
215
216      <tr>
217       <th align="right">Zeige Wiedervorlagen...</th>
218       <td>
219        <input type="checkbox" name="todo_cfg.show_follow_ups" id="todo_cfg_show_follow_ups" value="1"[% IF todo_cfg.show_follow_ups %] checked[% END %]>
220        <label for="todo_cfg_show_follow_ups">...auf der Aufgabenliste</label>
221       </td>
222       <td>
223        <input type="checkbox" name="todo_cfg.show_follow_ups_login" id="todo_cfg_show_follow_ups_login" value="1"[% IF todo_cfg.show_follow_ups_login %] checked[% END %]>
224        <label for="todo_cfg_show_follow_ups_login">...nach dem Anmelden</label>
225       </td>
226      </tr>
227
228      [%- IF AUTH_RIGHTS_SALES_QUOTATION_EDIT %]
229      <tr>
230       <th align="right">Überfällige Angebote und Preisanfragen anzeigen...</th>
231       <td>
232        <input type="checkbox" name="todo_cfg.show_overdue_sales_quotations" id="todo_cfg_show_overdue_sales_quotations" value="1"[% IF todo_cfg.show_overdue_sales_quotations %] checked[% END %]>
233        <label for="todo_cfg_show_overdue_sales_quotations">...auf der Aufgabenliste</label>
234       </td>
235       <td>
236        <input type="checkbox" name="todo_cfg.show_overdue_sales_quotations_login" id="todo_cfg_show_overdue_sales_quotations_login" value="1"[% IF todo_cfg.show_overdue_sales_quotations_login %] checked[% END %]>
237        <label for="todo_cfg_show_overdue_sales_quotations_login">...nach dem Anmelden</label>
238       </td>
239      </tr>
240      [%- END %]
241     </table>
242
243     <br style="clear: left" />
244    </div>
245   </div>
246
247   <p><input type="submit" class="submit" name="action" value="Speichern"></p>
248  </form>
249
250  <script type="text/javascript">
251   <!--
252       //Start Tab Content script for UL with id="maintab" Separate multiple ids each with a comma.
253       initializetabcontent("maintab");
254     -->
255  </script>
256
257 </body>
258 </html>