SL::Template::Plugin::L::select_tag und SL::Template::Plugin::L::options_for_select...
[kivitendo-erp.git] / templates / webpages / am / config.html
1 [%- USE T8 %]
2 [%- USE LxERP %]
3 [% USE HTML %][% USE L %]<body onLoad="fokus()">
4
5  <p>
6   <div class="listtop">[% title %]</div>
7  </p>
8
9  <form method="post" action="am.pl" name="Form">
10
11   <ul id="maintab" class="shadetabs">
12    <li class="selected"><a href="#" rel="page_personal_settings">[% 'Personal settings' | $T8 %]</a></li>
13    <li><a href="#" rel="page_display_options">[% 'Display options' | $T8 %]</a></li>
14    <li><a href="#" rel="page_print_options">[% 'Print options' | $T8 %]</a></li>
15    <li><a href="#" rel="page_todo_list_options">[% 'TODO list options' | $T8 %]</a></li>
16   </ul>
17
18   <input type="hidden" name="type" value="preferences">
19
20   <div class="tabcontentstyle">
21
22    <div id="page_personal_settings" class="tabcontent">
23
24     <table>
25      <tr>
26       <th align="right">[% 'Name' | $T8 %]</th>
27       <td><input name="name" size="15" value="[% HTML.escape(myconfig_name) %]"></td>
28      </tr>
29
30      <tr>
31       <th align="right">[% 'Password' | $T8 %]</th>
32       <td>
33        [%- IF CAN_CHANGE_PASSWORD %]
34        <input type="password" name="new_password" size="10" value="********">
35        [%- ELSE %]
36        <input type="hidden" name="new_password" value="********">
37        [%- END %]
38       </td>
39      </tr>
40
41      <tr>
42       <th align="right">[% 'E-mail' | $T8 %]</th>
43       <td><input name="email" size="30" value="[% HTML.escape(myconfig_email) %]"></td>
44      </tr>
45
46      <tr valign="top">
47       <th align="right">[% 'Signature' | $T8 %]</th>
48       <td><textarea name="signature" rows="3" cols="50">[% HTML.escape(myconfig_signature) %]</textarea></td>
49      </tr>
50
51      <tr>
52       <th align="right">[% 'Phone' | $T8 %]</th>
53       <td><input name="tel" size="14" value="[% HTML.escape(myconfig_tel) %]"></td>
54      </tr>
55
56      <tr>
57       <th align="right">[% 'Fax' | $T8 %]</th>
58       <td><input name="fax" size="14" value="[% HTML.escape(myconfig_fax) %]"></td>
59      </tr>
60      <tr>
61       <th align="right">[% 'Company' | $T8 %]</th>
62       <td><input name="company" size="30" value="[% HTML.escape(myconfig_company) %]"></td>
63      </tr>
64      <tr valign="top">
65       <th align="right">[% 'Address' | $T8 %]</th>
66       <td><textarea name="address" rows="4" cols="50">[% HTML.escape(myconfig_address) %]</textarea></td>
67      </tr>
68      <tr>
69       <th align="right">[% 'SEPA creditor ID' | $T8 %]</th>
70       <td><input name="sepa_creditor_id" size="30" maxlength="35" value="[% HTML.escape(myconfig_sepa_creditor_id) %]"></td>
71      </tr>
72     </table>
73
74     <br style="clear: left" />
75    </div>
76
77    <div id="page_display_options" class="tabcontent">
78
79     <table>
80      <tr>
81       <th align="right">[% 'Date Format' | $T8 %]</th>
82       <td>
83         [% L.select_tag('dateformat', DATEFORMATS, value_key = 'value', title_key = 'name') %]
84       </td>
85      </tr>
86      <tr>
87       <th align="right">[% 'Output Number Format' | $T8 %]</th>
88       <td>
89         [% L.select_tag('numberformat', NUMBERFORMATS, value_key = 'value', title_key = 'name') %]
90       </td>
91      </tr>
92
93      <tr>
94       <th align="right">[% 'Dropdown Limit' | $T8 %]</th>
95       <td><input name="vclimit" size="10" value="[% HTML.escape(myconfig_vclimit) %]"></td>
96      </tr>
97
98      <tr>
99       <th align="right">[% 'Language' | $T8 %]</th>
100       <td>
101         [% L.select_tag('countrycode', COUNTRYCODES, value_key = 'value', title_key = 'name') %]
102       </td>
103      </tr>
104
105      <tr>
106       <th align="right">[% 'Stylesheet' | $T8 %]</th>
107       <td>
108         [% L.select_tag('usestylesheet', STYLESHEETS, value_key = 'value', title_key = 'name') %]
109       </td>
110      </tr>
111
112      <tr>
113       <th align="right">[% 'Setup Menu' | $T8 %]</th>
114       <td>
115        <select name="menustyle">
116         <option value="old"[% IF myconfig_menustyle == 'old' %] selected[% END %]>[% 'Old (on the side)' | $T8 %]</option>
117         <option value="v3"[% IF myconfig_menustyle == 'v3' %] selected[% END %]>[% 'Top (CSS)' | $T8 %]</option>
118         <option value="v4"[% IF myconfig_menustyle == 'v4' %] selected[% END %]>[% 'Top (CSS) new' | $T8 %]</option>
119         <option value="neu"[% IF myconfig_menustyle == 'neu' %] selected[% END %]>[% 'Top (Javascript)' | $T8 %]</option>
120        </select>
121       </td>
122      </tr>
123
124      <tr>
125       <th align="right">[% 'Form details (second row)' | $T8 %]</th>
126       <td>
127        <select name="show_form_details">
128         <option value="1"[% IF  myconfig_show_form_details %] selected[% END %]>[% 'Show by default' | $T8 %]</option>
129         <option value="0"[% IF !myconfig_show_form_details %] selected[% END %]>[% 'Hide by default' | $T8 %]</option>
130        </select>
131       </td>
132      </tr>
133
134      <tr>
135       <th align="right">[% 'Show custom variable search inputs' | $T8 %]</th>
136       <td>
137        <select name="hide_cvar_search_options">
138         <option value="0"[% IF !myconfig_hide_cvar_search_options %] selected[% END %]>[% 'Show by default' | $T8 %]</option>
139         <option value="1"[% IF  myconfig_hide_cvar_search_options %] selected[% END %]>[% 'Hide by default' | $T8 %]</option>
140        </select>
141       </td>
142      </tr>
143     </table>
144
145     <br style="clear: left" />
146    </div>
147
148    <div id="page_print_options" class="tabcontent">
149
150     <table>
151      <input name="printer" type="hidden" value="[% HTML.escape(myconfig_printer) %]">
152
153      <tr>
154       <th align="right">[% 'Default template format' | $T8 %]</th>
155       <td>
156         [% L.select_tag('template_format', TEMPLATE_FORMATS, value_key = 'value', title_key = 'name') %]
157       </td>
158      </tr>
159
160      <tr>
161       <th align="right">[% 'Default output medium' | $T8 %]</th>
162       <td>
163         [% L.select_tag('default_media', MEDIA, value_key = 'value', title_key = 'name') %]
164       </td>
165      </tr>
166
167      <tr>
168       <th align="right">[% 'Default printer' | $T8 %]</th>
169       <td>
170        [% L.select_tag('default_printer_id', PRINTERS, default = myconfig_default_printer_id, title_key = 'printer_description', with_empty = 1) %]
171       </td>
172      </tr>
173
174      <tr>
175       <th align="right">[% 'Number of copies' | $T8 %]</th>
176       <td><input name="copies" size="10" value="[% HTML.escape(myconfig_copies) %]"></td>
177      </tr>
178     </table>
179
180     <br style="clear: left" />
181    </div>
182
183    <div id="page_todo_list_options" class="tabcontent">
184
185     <table>
186      <tr>
187       <th align="right">[% 'Show your TODO list after loggin in' | $T8 %]</th>
188       <td colspan="2">
189        <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 %]>
190        <label for="todo_cfg_show_after_login_1">[% 'Yes' | $T8 %]</label>
191        <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 %]>
192        <label for="todo_cfg_show_after_login_0">[% 'No' | $T8 %]</label>
193       </td>
194      </tr>
195
196      <tr class="listheading">
197       <th colspan="3">[% 'Configuration of individual TODO items' | $T8 %]</th>
198      </tr>
199
200      <tr>
201       <th align="right">[% 'Show follow ups...' | $T8 %]</th>
202       <td>
203        <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 %]>
204        <label for="todo_cfg_show_follow_ups">[% '...on the TODO list' | $T8 %]</label>
205       </td>
206       <td>
207        <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 %]>
208        <label for="todo_cfg_show_follow_ups_login">[% '...after loggin in' | $T8 %]</label>
209       </td>
210      </tr>
211
212      [%- IF AUTH_RIGHTS_SALES_QUOTATION_EDIT %]
213      <tr>
214       <th align="right">[% 'Show overdue sales quotations and requests for quotations...' | $T8 %]</th>
215       <td>
216        <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 %]>
217        <label for="todo_cfg_show_overdue_sales_quotations">[% '...on the TODO list' | $T8 %]</label>
218       </td>
219       <td>
220        <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 %]>
221        <label for="todo_cfg_show_overdue_sales_quotations_login">[% '...after loggin in' | $T8 %]</label>
222       </td>
223      </tr>
224      [%- END %]
225     </table>
226
227     <br style="clear: left" />
228    </div>
229   </div>
230
231   <p><input type="submit" class="submit" name="action" value="[% 'Save' | $T8 %]"></p>
232  </form>
233
234  <script type="text/javascript">
235   <!--
236       var maintab = new ddtabcontent("maintab");
237       maintab.setpersist(true);
238       maintab.setselectedClassTarget("link"); //"link" or "linkparent"
239       maintab.init();
240     -->
241  </script>
242
243 </body>
244 </html>