bug 1570: return to same tab if cancelling preference edit
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / systempreferences.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Administration &rsaquo; <!-- TMPL_IF name="add_form" --> System Preferences &rsaquo; <!-- TMPL_IF NAME="modify" -->Modify system preference '<!-- TMPL_VAR NAME="searchfield" -->'<!-- TMPL_ELSE -->Add a system preference<!-- /TMPL_IF --><!-- /TMPL_IF --><!-- TMPL_IF name="add_validate" --> System Preferences &rsaquo; Data Added<!-- /TMPL_IF -->
3 <!-- TMPL_IF name="delete_confirm" --> <a href="">System Preferences &rsaquo; <!-- TMPL_VAR NAME="searchfield" --> &rsaquo; Confirm Deletion of Parameter '<!-- TMPL_VAR name="searchfield" -->'<!-- /TMPL_IF --><!-- TMPL_IF name="delete_confirmed" --> System Preferences &rsaquo; Parameter Deleted<!-- /TMPL_IF --><!-- TMPL_IF name="else" -->System Preferences<!-- /TMPL_IF --></title>
4 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
5 <script type="text/javascript">
6 //<![CDATA[
7 <!-- TMPL_IF NAME="add_form" -->
8         $(document).ready(function() {
9                 $('.variabletype').css({ color: "#0000CC", cursor: "pointer" });
10                 $('.variabletype').click(function() {
11                         $('#preftype').attr("value",$(this).attr("id"));
12                 });
13         });
14 <!-- /TMPL_IF -->
15         //
16         function isNotNull(f,noalert) {
17             if (f.value.length ==0) {
18     return false;
19             }
20             return true;
21         }
22         //
23         function toUC(f) {
24             var x=f.value.toUpperCase();
25             f.value=x;
26             return true;
27         }
28         //
29         function isNum(v,maybenull) {
30         var n = new Number(v.value);
31         if (isNaN(n)) {
32             return false;
33             }
34         if (maybenull==0 && v.value=='') {
35             return false;
36         }
37         return true;
38         }
39         //
40         function isDate(f) {
41             var t = Date.parse(f.value);
42             if (isNaN(t)) {
43                 return false;
44             }
45         }
46         //
47         function Check(f) {
48             var ok=1;
49             var _alertString="";
50             var alertString2;
51             if (f.variable.value.length==0) {
52                 _alertString += "\n- " + _("variable missing");
53             }
54             if (f.value.value.length==0) {
55                 _alertString += "\n- " + _("value missing");
56             }
57             if (_alertString.length==0) {
58                 document.Aform.submit();
59             } else {
60                 alertString2  = _("Form not submitted because of the following problem(s)");
61                 alertString2 += "\n------------------------------------------------------------------------------------\n";
62                 alertString2 += _alertString;
63                 alert(alertString2);
64             }
65         }
66         //]]>
67 </script>
68 </head>
69 <body>
70 <!-- TMPL_INCLUDE NAME="header.inc" -->
71 <!-- TMPL_INCLUDE NAME="sysprefs-admin-search.inc" -->
72
73 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo; <!-- TMPL_IF name="add_form" --> <a href="/cgi-bin/koha/admin/systempreferences.pl">System Preferences</a> &rsaquo; <!-- TMPL_IF NAME="modify" -->Modify system preference '<!-- TMPL_VAR NAME="searchfield" -->'<!-- TMPL_ELSE -->Add a system preference<!-- /TMPL_IF --><!-- /TMPL_IF --><!-- TMPL_IF name="add_validate" --> <a href="/cgi-bin/koha/admin/systempreferences.pl">System Preferences</a> &rsaquo; Data Added<!-- /TMPL_IF -->
74 <!-- TMPL_IF name="delete_confirm" --> <a href="/cgi-bin/koha/admin/systempreferences.pl">System Preferences</a> &rsaquo; <a href="/cgi-bin/koha/admin/systempreferences.pl?op=add_form&searchfield=<!-- TMPL_VAR NAME="searchfield" -->"><!-- TMPL_VAR NAME="searchfield" --></a> &rsaquo; Confirm Deletion of Parameter '<!-- TMPL_VAR name="searchfield" -->'<!-- /TMPL_IF --><!-- TMPL_IF name="delete_confirmed" --> <a href="/cgi-bin/koha/admin/systempreferences.pl">System Preferences</a> &rsaquo; Parameter Deleted<!-- /TMPL_IF --><!-- TMPL_IF name="else" -->System Preferences<!-- /TMPL_IF --></div>
75
76 <div id="doc3" class="yui-t2">
77    
78    <div id="bd">
79         <div id="yui-main">
80         <div class="yui-b">
81
82 <!-- TMPL_IF NAME="add_form" -->
83     
84         
85         <form action="<!-- TMPL_VAR NAME="script_name" -->" name="Aform" method="post">
86                 
87         <fieldset class="rows"><legend><!-- TMPL_IF NAME="modify" -->
88             Modify a system preference
89         <!-- TMPL_ELSE -->
90             Add a system preference
91         <!-- /TMPL_IF --></legend><ol>
92             <li><label for="explanation">Explanation: </label><input type="text" name="explanation" id="explanation" size="60" value="<!-- TMPL_VAR NAME="explanation" escape="HTML" -->" /><input type="hidden" name="op" value="add_validate" /></li>
93             <li><!-- TMPL_IF NAME="searchfield" --><span class="label">Variable: </span><!-- TMPL_VAR NAME="searchfield" --><input type="hidden" name="variable" value="<!-- TMPL_VAR NAME="searchfield" -->" />
94             <!-- TMPL_ELSE --><label for="variable">Variable: </label><input type="text" name="variable" id="variable" size="60" /><!-- /TMPL_IF --></li>
95             <li><label for="value">Value: </label><!-- TMPL_IF NAME="type-free" -->
96                     <textarea id="value" name="value" cols="<!-- TMPL_VAR NAME="fieldlength" -->"><!-- TMPL_VAR NAME="value" escape="HTML" --></textarea>
97                 <!-- /TMPL_IF -->
98                 <!-- TMPL_IF NAME="type-textarea" -->
99                     <textarea name="value" id="value" rows="<!--TMPL_VAR NAME="rows" -->" cols="<!-- TMPL_VAR NAME="cols" -->"><!-- TMPL_VAR NAME="value" escape="HTML" --></textarea>
100                 <!-- /TMPL_IF -->
101                 <!-- TMPL_IF NAME="type-choice" -->
102                     <select name="value" id="value">
103                         <!-- TMPL_LOOP NAME="options" -->
104                             <!-- TMPL_IF NAME="selected" -->
105                                 <option value="<!-- TMPL_VAR NAME="option" -->" selected="selected">
106                             <!-- TMPL_ELSE -->
107                                 <option value="<!-- TMPL_VAR NAME="option" -->">
108                             <!-- /TMPL_IF --><!-- TMPL_VAR NAME="option" --></option>
109                         <!-- /TMPL_LOOP -->
110                     </select>
111                 <!-- /TMPL_IF -->
112                 <!-- TMPL_IF NAME="type-yesno" -->
113                     <!-- TMPL_IF NAME="value-yes" -->
114                     <input type="radio" name="value" id="value" value="1" checked="checked" /><!-- TMPL_ELSE --><input type="radio" name="value" id="value" value="1" /><!-- /TMPL_IF --> <label for="value" class="yesno">ON</label>
115                 <!-- TMPL_IF NAME="value-no" -->        
116                     <input type="radio" name="value" id="value-no" value="0" checked="checked" /><!-- TMPL_ELSE --><input type="radio" name="value" id="value-no" value="0" /><!-- /TMPL_IF --> <label for="value-no" class="yesno">OFF</label><!-- /TMPL_IF -->
117                 </li>
118         </ol></fieldset>
119         <fieldset class="action"><input type="submit" value="Save" /> 
120           <!-- TMPL_IF name="return_tab" -->
121             <a class="cancel" href="/cgi-bin/koha/admin/systempreferences.pl?tab=<!-- TMPL_VAR name="return_tab" -->">Cancel</a>
122           <!-- TMPL_ELSE -->
123             <a class="cancel" href="/cgi-bin/koha/admin/systempreferences.pl">Cancel</a>
124           <!-- /TMPL_IF -->
125         </fieldset>
126         
127         <fieldset class="brief">
128                 <legend>Koha internal</legend>
129                 <div class="hint">Note: you should have no reasons to modify the following default values</div>
130                 <ol>
131         <li><label for="preftype">Variable type:</label>
132                 <div class="hint"> (<span class="variabletype" id="Choice">Choice</span>, <span class="variabletype" id="YesNo">YesNo</span>, <span class="variabletype" id="Integer">Integer</span>, <span class="variabletype" id="Textarea">Textarea</span>, <span class="variabletype" id="Float">Float</span>, <span class="variabletype" id="Themes">Themes</span>, <span class="variabletype" id="Languages">Languages</span>, or <span class="variabletype" id="ClassSources">ClassSources</span>)</div>
133                 <input type="text" name="preftype" id="preftype" value="<!--TMPL_VAR NAME="preftype" -->" size="40" maxlength="40" /></li>
134         <li><label for="prefoptions">Variable options:</label>
135                 <div class="hint">(a choice list for Choice (separated by |) or cols|rows for Texarea)</div>
136                 <input type="text" name="prefoptions" id="prefoptions" value="<!-- TMPL_VAR NAME="prefoptions" -->" size="60" maxlength="80" /></li>
137                 </ol>
138                 </fieldset>
139         </form>
140     <!-- /TMPL_IF -->
141     
142     <!-- TMPL_IF NAME="add_validate" -->
143     
144
145         <h3>Data recorded</h3>
146         
147         <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
148         <input type="submit" value="OK" />
149         </form>
150     <!-- /TMPL_IF -->
151     
152     <!-- TMPL_IF NAME="delete_confirm" -->
153     
154     <table>
155         <caption>Confirm Deletion of <!-- TMPL_VAR NAME="searchfield" -->?</caption>
156         <tr>
157             <th>Variable Name:</th>
158             <td><!-- TMPL_VAR NAME="searchfield" --></td>
159         </tr>
160         <tr><th>Value: </th><td>
161                 <!-- TMPL_VAR NAME="Tvalue" -->
162                 </td></tr></table>
163         <form class="inline" action="<!-- TMPL_VAR NAME="script_name" -->" method="post"><input type="hidden" name="op" value="delete_confirmed" /><input type="hidden" name="searchfield" value="<!-- TMPL_VAR NAME="searchfield" -->" />
164         <input type="submit"  value="Yes, Delete" /></form> <form class="inline" action="<!-- TMPL_VAR NAME="script_name" -->" method="post"><input type="submit" value="No, Do not Delete" /></form>
165     
166     
167     <!-- /TMPL_IF -->
168     
169     <!-- TMPL_IF NAME="delete_confirmed" -->
170     
171         <h3>Data deleted</h3>
172         <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
173         <input type="submit" value="Back to System Preferences" />
174         </form>
175     <!-- /TMPL_IF -->
176    
177     <!-- TMPL_IF NAME="else" -->
178         
179         <div id="toolbar">
180         <script type="text/javascript">
181         //<![CDATA[
182         // prepare DOM for YUI Toolbar
183          $(document).ready(function() {
184             yuiToolbar();
185          });
186         // YUI Toolbar Functions
187         function yuiToolbar() {
188             new YAHOO.widget.Button("newstopword");
189         }       //]]>
190         </script>
191         <ul class="toolbar">
192         <li><a id="newstopword" href="<!-- TMPL_VAR NAME="script_name" -->?op=add_form">New Preference</a></li>
193 </ul></div>
194         
195     <h1>System preferences admin</h1>
196     <div id="action">
197         <a href="/cgi-bin/koha/admin/systempreferences.pl?tab=Admin">Admin</a>
198         <a href="/cgi-bin/koha/admin/systempreferences.pl?tab=Acquisitions">Acquisitions</a>
199         <a href="/cgi-bin/koha/admin/systempreferences.pl?tab=Authorities">Authorities</a>
200         <a href="/cgi-bin/koha/admin/systempreferences.pl?tab=Catalogue">Catalogue</a>
201         <a href="/cgi-bin/koha/admin/systempreferences.pl?tab=Circulation">Circulation</a>
202         <a href="/cgi-bin/koha/admin/systempreferences.pl?tab=Members">Patrons</a>
203         <a href="/cgi-bin/koha/admin/systempreferences.pl?tab=OPAC">OPAC</a>
204         <a href="/cgi-bin/koha/admin/systempreferences.pl?tab=OPACFeatures">OPAC Features</a>
205                 <a href="/cgi-bin/koha/admin/systempreferences.pl?tab=FRBR">FRBR</a>
206         <a href="/cgi-bin/koha/admin/systempreferences.pl?tab=Intranet">Staff Client</a>
207         <a href="/cgi-bin/koha/admin/systempreferences.pl?tab=LOGFeatures">Logs</a>
208         <a href="/cgi-bin/koha/admin/systempreferences.pl?">Other</a>
209     </div>
210     <h2>Editing preferences for <!-- TMPL_VAR name="tab" --> module</h2>
211     <!-- TMPL_VAR NAME="searchfield" -->
212     <table width="80%">
213     <tr>
214         <th>Preference</th>
215         <th>Explanation</th>
216         <th>Value</th>
217         <th>Edit</th>
218         <th>Delete</th>
219     </tr>
220     <!-- TMPL_LOOP NAME="loop" -->
221     <tr<!-- TMPL_IF NAME="toggle" --> class="highlight"<!-- /TMPL_IF -->>
222
223         <td><strong><a href="<!-- TMPL_VAR NAME="edit" -->"><!-- TMPL_VAR NAME="variable" --></a></strong></td><td> <!-- TMPL_VAR NAME="explanation" --></td>
224         <td><!-- TMPL_IF NAME="yesno" -->
225                 <!-- TMPL_IF NAME="yes" -->ON<!-- TMPL_ELSE -->OFF<!-- /TMPL_IF -->
226                 <!-- TMPL_ELSE --><!-- TMPL_VAR NAME="value" --><!-- /TMPL_IF --></td>
227
228         <td><a href="<!-- TMPL_VAR NAME="edit" -->">Edit </a></td>
229         <td><a href="<!-- TMPL_VAR NAME="delete" -->">Delete</a></td>
230     </tr>
231     <!-- /TMPL_LOOP -->
232     </table>
233     
234     <!-- /TMPL_IF -->
235
236 </div>
237 </div>
238 <div class="yui-b">
239 <!-- TMPL_INCLUDE NAME="admin-menu.inc" -->
240 </div>
241 </div>
242 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->