]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/admin/org_settings.xhtml
removed loading of slimtree since it is not used and it tries to load images that...
[Evergreen.git] / Open-ILS / xul / staff_client / server / admin / org_settings.xhtml
1 <?xml version='1.0'?>
2 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:xi="http://www.w3.org/2001/XInclude">
3
4         <head>
5                 <title>Evergreen: Library Settings Editor</title>
6                 <script language='javascript' src='/opac/common/js/utils.js'> </script>
7                 <script language='javascript' src='/opac/common/js//config.js'> </script>
8                 <script language='javascript' src='/opac/common/js/CGI.js'> </script>
9                 <script language='javascript' src='/opac/common/js/Cookie.js'> </script>
10         
11                 <script language='javascript' src='/opac/common/js/JSON.js'> </script>
12                 <script language='javascript' src='/opac/common/js/fmall.js'> </script>
13                 <script language='javascript' src='/opac/common/js/fmgen.js'> </script>
14                 <script language='javascript' src='/opac/common/js/Cookies.js'> </script>
15                 <script language='javascript' src='/opac/common/js/opac_utils.js'> </script>
16                 <script language='javascript' src='/opac/common/js/OrgTree.js'> </script>
17                 <script language='javascript' src='/opac/common/js/org_utils.js'> </script>
18                 <script language='javascript' src='/opac/common/js/init.js'> </script>
19                 <script language='javascript' src='/opac/common/js/RemoteRequest.js'> </script>
20                 <script language='javascript' src='adminlib.js'> </script>
21                 <script language='javascript' src='org_settings.js'> </script>
22
23                 <link type='text/css' rel='stylesheet' href='admin.css' />
24         </head>
25
26         <body onload='osEditorInit();'>
27
28                 <div class='welcome_box'>
29                         <span>Welcome </span><b><span id='user'/></b>
30                 </div>
31
32                 <center>
33                         <div class='title'> Library Settings Editor </div>
34
35                         <br/><br/>
36                         Edit Settings for : <select id='os_orgs' style='width:auto;'/>
37                         <br/><br/>
38
39                         <table class='data_grid data_grid_center' width='85%'>
40                                 <thead>
41                                         <tr><td colspan='4' style='padding: 8px;'>Library Settings for <b id='osCurrentOrg'/></td></tr>
42                                 </thead>
43                                 <tbody id='os_tbody'>
44                                         <tr>
45                                                 <td>OPAC Inactivity Timeout (in seconds)</td>
46                                                 <td><input type='text' id='auth.opac_timeout' size='5'/></td>
47                                                 <td><button id='auth.opac_timeout.apply'>Apply</button></td>
48                                                 <td><button id='auth.opac_timeout.apply_all'>Apply to all Locations</button></td>
49                                         </tr>
50                                         <tr>
51                                                 <td>Staff Login Inactivity Timeout (in seconds)</td>
52                                                 <td><input type='text' id='auth.staff_timeout' size='5'/></td>
53                                                 <td><button id='auth.staff_timeout.apply'>Apply</button></td>
54                                                 <td><button id='auth.staff_timeout.apply_all'>Apply to all Locations</button></td>
55                                         </tr>
56                                         <tr>
57                                                 <td>Lost Materials Processing Fee</td>
58                                                 <td>&#036;<input ismoney='1' type='text' id='circ.lost_materials_processing_fee' size='5'/></td>
59                                                 <td><button id='circ.lost_materials_processing_fee.apply'>Apply</button></td>
60                                                 <td><button id='circ.lost_materials_processing_fee.apply_all'>Apply to all Locations</button></td>
61                                         </tr>
62                                         <tr>
63                                                 <td>Default Item Price</td>
64                                                 <td>&#036;<input ismoney='1' type='text' id='cat.default_item_price' size='5'/></td>
65                                                 <td><button id='cat.default_item_price.apply'>Apply</button></td>
66                                                 <td><button id='cat.default_item_price.apply_all'>Apply to all Locations</button></td>
67                                         </tr>
68                                         <!--
69                                         <tr>
70                                                 <td>Collections Fee</td>
71                                                 <td>&#036;<input ismoney='1' type='text' id='circ.collections_fee' size='5'/></td>
72                                                 <td><button id='circ.collections_fee.apply'>Apply</button></td>
73                                                 <td><button id='circ.collections_fee.apply_all'>Apply to all Locations</button></td>
74                                         </tr>
75                                         -->
76                                 </tbody>
77                         </table>
78                         <br/>
79                         <div style='font-size: 9pt;'>
80                                 <div>
81                                         I. "Apply to all Locations" will force the new setting 
82                                         to be applied to all locations in the location dropdown.
83                                 </div>
84                         </div>
85                 </center>
86                 <span id='os_success' class='hide_me'>
87                         Update succeeded.
88                 </span>
89                 <span id='os_confirm_all' class='hide_me'>
90                         This will update the setting for all of the locations listed in the dropdown menu.
91                         Are you sure you wish to continue?
92                 </span>
93         </body>
94 </html>
95
96
97