TopQuickSearch: UserPreferences kleinere Syntaxverbesserungen
[kivitendo-erp.git] / templates / webpages / am / config.html
1 [%- USE T8 %]
2 [%- USE LxERP %]
3 [%- USE HTML %]
4 [%- USE L %]
5
6 <h1>[% title %]</h1>
7
8  <form method="post" action="am.pl" name="Form" id="form">
9   <div class="tabwidget">
10    <ul>
11     <li><a href="#page_personal_settings">[% 'Personal settings' | $T8 %]</a></li>
12     <li><a href="#page_display_options">[% 'Display options' | $T8 %]</a></li>
13     <li><a href="#page_print_options">[% 'Print options' | $T8 %]</a></li>
14     <li><a href="#page_todo_list_options">[% 'TODO list options' | $T8 %]</a></li>
15    </ul>
16
17    <div id="page_personal_settings">
18
19     <table>
20      <tr>
21       <th align="right">[% 'Name' | $T8 %]</th>
22       <td><input name="name" size="15" value="[% HTML.escape(MYCONFIG.name) %]"></td>
23      </tr>
24
25      <tr>
26       <th align="right">[% 'Password' | $T8 %]</th>
27       <td>
28        [%- IF CAN_CHANGE_PASSWORD %]
29        <input type="password" name="new_password" size="10" value="********">
30        [%- ELSE %]
31        <input type="hidden" name="new_password" value="********">
32        [%- END %]
33       </td>
34      </tr>
35
36      <tr>
37       <th align="right">[% 'E-mail' | $T8 %]</th>
38       <td><input name="email" size="30" value="[% HTML.escape(MYCONFIG.email) %]"></td>
39      </tr>
40
41      <tr valign="top">
42       <th align="right">[% 'Signature' | $T8 %]</th>
43       <td><textarea id="signature" name="signature" class="toggletextarea" rows="5" cols="50">[% HTML.escape(MYCONFIG.signature) %] </textarea>
44          <span id="full_signature" class="toggletextarea"> <textarea readonly name="full_signature" rows="10" cols="50" >[% HTML.escape(full_signature) %]</textarea> </span>
45          <a href="#" class="togglelink">[% 'Check full signature' | $T8 %]</a>
46          <a href="#" id="edit_signature" class="togglelink">[% 'Edit user signature' | $T8 %]</a>
47           </td> </tr>
48      <tr>
49       <th align="right">[% 'Phone' | $T8 %]</th>
50       <td><input name="tel" size="14" value="[% HTML.escape(MYCONFIG.tel) %]"></td>
51      </tr>
52
53      <tr>
54       <th align="right">[% 'Fax' | $T8 %]</th>
55       <td><input name="fax" size="14" value="[% HTML.escape(MYCONFIG.fax) %]"></td>
56      </tr>
57
58       <tr>
59         <th align="right">[% 'taxincluded checked' | $T8 %]</th>
60         <td>
61           [% L.yes_no_tag('taxincluded_checked', MYCONFIG.taxincluded_checked) %]
62         </td>
63       </tr>
64
65       <tr>
66         <th align="right">[% 'Focus position after update' | $T8 %]</th>
67         <td>
68           [% L.select_tag(
69             'focus_position',
70             [
71               ['new_description',  LxERP.t8('New row, description')],
72               ['new_partnumber',   LxERP.t8('New row, partnumber')],
73               ['new_qty',          LxERP.t8('New row, qty')],
74               ['last_description', LxERP.t8('Last row, description')],
75               ['last_partnumber',  LxERP.t8('Last row, partnumber')],
76               ['last_qty',         LxERP.t8('Last row, qty')],
77             ],
78             default => MYCONFIG.focus_position)
79           %]
80         </td>
81       </tr>
82
83       <tr>
84         <th align="right">[% 'Item multi selection with qty' | $T8 %]</th>
85         <td>
86           [% L.yes_no_tag('item_multiselect', MYCONFIG.item_multiselect) %]
87         </td>
88       </tr>
89
90     </table>
91    </div>
92
93    <div id="page_display_options">
94
95     <table>
96      <tr>
97       <th align="right">[% 'Date Format' | $T8 %]</th>
98       <td>
99         [% L.select_tag('dateformat', DATEFORMATS, value_key = 'value', title_key = 'name') %]
100       </td>
101      </tr>
102      <tr>
103        <th align="right">[% 'Time Format' | $T8 %]</th>
104        <td>
105          [% L.select_tag('timeformat', TIMEFORMATS, value_key = 'value', title_key = 'name') %]
106        </td>
107      </tr>
108      <tr>
109       <th align="right">[% 'Output Number Format' | $T8 %]</th>
110       <td>
111         [% L.select_tag('numberformat', NUMBERFORMATS, value_key = 'value', title_key = 'name') %]
112       </td>
113      </tr>
114
115      <tr>
116       <th align="right">[% 'Language' | $T8 %]</th>
117       <td>
118         [% L.select_tag('countrycode', COUNTRYCODES, value_key = 'value', title_key = 'name') %]
119       </td>
120      </tr>
121
122      <tr>
123       <th align="right">[% 'Stylesheet' | $T8 %]</th>
124       <td>
125         [% L.select_tag('usestylesheet', STYLESHEETS, value_key = 'value', title_key = 'name') %]
126       </td>
127      </tr>
128
129      <tr>
130       <th align="right">[% 'Setup Menu' | $T8 %]</th>
131       <td>
132        <select name="menustyle">
133         <option value="old"[% IF MYCONFIG.menustyle == 'old' %] selected[% END %]>[% 'Old (on the side)' | $T8 %]</option>
134         <option value="v3"[% IF MYCONFIG.menustyle == 'v3' %] selected[% END %]>[% 'Top (CSS)' | $T8 %]</option>
135         <option value="neu"[% IF MYCONFIG.menustyle == 'neu' %] selected[% END %]>[% 'Top (Javascript)' | $T8 %]</option>
136        </select>
137       </td>
138      </tr>
139
140      <tr>
141       <th align="right">[% 'Form details (second row)' | $T8 %]</th>
142       <td>
143        <select name="show_form_details">
144         <option value="1"[% IF  MYCONFIG.show_form_details %] selected[% END %]>[% 'Show by default' | $T8 %]</option>
145         <option value="0"[% IF !MYCONFIG.show_form_details %] selected[% END %]>[% 'Hide by default' | $T8 %]</option>
146        </select>
147       </td>
148      </tr>
149
150      <tr>
151       <th align="right">[% 'Show custom variable search inputs' | $T8 %]</th>
152       <td>
153        <select name="hide_cvar_search_options">
154         <option value="0"[% IF !MYCONFIG.hide_cvar_search_options %] selected[% END %]>[% 'Show by default' | $T8 %]</option>
155         <option value="1"[% IF  MYCONFIG.hide_cvar_search_options %] selected[% END %]>[% 'Hide by default' | $T8 %]</option>
156        </select>
157       </td>
158      </tr>
159
160      <tr>
161       <th align="right">[% 'Number of columns of custom variables in form details (second row)' | $T8 %]</th>
162       <td>
163         [% L.input_tag('form_cvars_nr_cols',  MYCONFIG.form_cvars_nr_cols || 3,  size = 5) %]
164       </td>
165      </tr>
166      <tr>
167       <th align="right">[% 'Quick Searches that will be shown in the header for this user' | $T8 %]</th>
168       <td colspan=2>
169         <div class="clearfix">
170          [% L.select_tag("quick_search_modules[]",
171            enabled_quick_searchmodules,
172            value_key  = "name",
173            title_key  = "description_config",
174            id         = "quick_searches",
175            multiple   = 1,
176            with_empty = 1
177            size       = enabled_quick_searchmodules.size,
178            default    = default_quick_searchmodules) %]
179         </div>
180       </td>
181     </tr>
182     </table>
183    </div>
184
185    <div id="page_print_options">
186
187     <table>
188      <input name="printer" type="hidden" value="[% HTML.escape(MYCONFIG.printer) %]">
189
190      <tr>
191       <th align="right">[% 'Default template format' | $T8 %]</th>
192       <td>
193         [% L.select_tag('template_format', TEMPLATE_FORMATS, value_key = 'value', title_key = 'name') %]
194       </td>
195      </tr>
196
197      <tr>
198       <th align="right">[% 'Default output medium' | $T8 %]</th>
199       <td>
200         [% L.select_tag('default_media', MEDIA, value_key = 'value', title_key = 'name') %]
201       </td>
202      </tr>
203
204      <tr>
205       <th align="right">[% 'Default printer' | $T8 %]</th>
206       <td>
207        [% L.select_tag('default_printer_id', PRINTERS, default = MYCONFIG.default_printer_id, title_key = 'printer_description', with_empty = 1) %]
208       </td>
209      </tr>
210
211      <tr>
212       <th align="right">[% 'Number of copies' | $T8 %]</th>
213       <td><input name="copies" size="10" value="[% HTML.escape(MYCONFIG.copies) %]"></td>
214      </tr>
215     </table>
216    </div>
217
218    <div id="page_todo_list_options">
219
220     <table>
221      <tr>
222       <th align="right">[% 'Show your TODO list after logging in' | $T8 %]</th>
223       <td colspan="2">
224        <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 %]>
225        <label for="todo_cfg_show_after_login_1">[% 'Yes' | $T8 %]</label>
226        <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 %]>
227        <label for="todo_cfg_show_after_login_0">[% 'No' | $T8 %]</label>
228       </td>
229      </tr>
230
231      <tr class="listheading">
232       <th colspan="3">[% 'Configuration of individual TODO items' | $T8 %]</th>
233      </tr>
234
235      <tr>
236       <th align="right">[% 'Show follow ups...' | $T8 %]</th>
237       <td>
238        <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 %]>
239        <label for="todo_cfg_show_follow_ups">[% '...on the TODO list' | $T8 %]</label>
240       </td>
241       <td>
242        <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 %]>
243        <label for="todo_cfg_show_follow_ups_login">[% '...after logging in' | $T8 %]</label>
244       </td>
245      </tr>
246
247      [%- IF AUTH.assert('sales_quotation_edit', 'may_fail') %]
248      <tr>
249       <th align="right">[% 'Show overdue sales quotations and requests for quotations...' | $T8 %]</th>
250       <td>
251        <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 %]>
252        <label for="todo_cfg_show_overdue_sales_quotations">[% '...on the TODO list' | $T8 %]</label>
253       </td>
254       <td>
255        <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 %]>
256        <label for="todo_cfg_show_overdue_sales_quotations_login">[% '...after logging in' | $T8 %]</label>
257       </td>
258      </tr>
259      [%- END %]
260     </table>
261    </div>
262   </div>
263  </form>
264
265  <script type="text/javascript">
266   <!--
267 $(function() {
268   $("#full_signature").toggle();
269   $("#edit_signature").toggle();
270   $('.togglelink').click(function() {
271     $('.toggletextarea').toggle();
272     $('.togglelink').toggle();
273     return false;
274   });
275 });
276     -->
277  </script>