Bug 2142: reinstate maxItemInSearchResults systempreference
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / categorie.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Administration &rsaquo; Patron Categories &rsaquo; <!-- TMPL_IF NAME="add_form" --><!-- TMPL_IF NAME="categorycode" -->Modify category '<!-- TMPL_VAR NAME="categorycode" escape="html" -->'<!-- TMPL_ELSE -->New category<!-- /TMPL_IF --><!-- /TMPL_IF -->
3 <!-- TMPL_IF NAME="add_validate" -->Data recorded<!-- /TMPL_IF -->
4 <!-- TMPL_IF NAME="delete_confirm" --><!-- TMPL_IF NAME="totalgtzero" -->Cannot Delete: Category <!-- TMPL_VAR NAME="categorycode" escape="html" --> in Use<!-- TMPL_ELSE -->Confirm Deletion of Category '<!-- TMPL_VAR NAME="categorycode" escape="html" -->'<!-- /TMPL_IF --><!-- /TMPL_IF -->
5 <!-- TMPL_IF NAME="delete_confirmed" -->Category Deleted<!-- /TMPL_IF --></title>
6 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
7 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
8 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/jquery/plugins/jquery.tablesorter.pager.js"></script>
9 <script type="text/javascript" id="js">$(document).ready(function() {
10         $("#table_categorie").tablesorter({
11                 sortList: [[0,0]],
12                 headers: { 10: { sorter: false}}
13         }).tablesorterPager({container: $("#pagertable_categorie"),positionFixed: false,size: 20});
14 }); </script>
15 <!-- TMPL_INCLUDE NAME="calendar.inc" -->
16 <script type="text/javascript">
17 //<![CDATA[
18         //
19         function isNotNull(f,noalert) {
20                 if (f.value.length ==0) {
21    return false;
22                 }
23                 return true;
24         }
25         //
26         function toUC(f) {
27                 var x=f.value.toUpperCase();
28                 f.value=x;
29                 return true;
30         }
31         //
32         function isNum(v,maybenull) {
33         var n = new Number(v.value);
34         if (isNaN(n)) {
35                 return false;
36                 }
37         if (maybenull==0 && v.value=='') {
38                 return false;
39         }
40         return true;
41         }
42         //
43         function isDate(f) {
44                 var t = Date.parse(f.value);
45                 if (isNaN(t)) {
46                         return false;
47                 }
48         }
49         // to check if the data are correctly entered.
50         function Check(ff) {
51             var ok=0;
52                 var _alertString=_("Form not submitted because of the following problem(s)");
53                 _alertString +="\n-------------------------------------------------------------------\n\n";
54                 if (ff.categorycode.value.length==0) {
55                     ok=1;
56                         _alertString += _("- categorycode missing") + "\n";
57                 }
58                 if (!(ff.category_type.value)){
59                     ok=1;
60                     _alertString += _("- category type missing") + "\n";
61                 }
62                 if (!(isNotNull(ff.description,1))) {
63                     ok=1;
64                         _alertString += _("- description missing") + "\n";
65                 }
66                 if (!isNum(ff.upperagelimit,0) && ff.category_type.value=='C') {
67                     ok=1;
68                         _alertString += _("- upperagelimit is not a number") + "\n";
69                                 
70                 }
71                 if(!(ff.enrolmentperioddate.value || ff.enrolmentperiod.value)) {
72                     ok=1;
73                     _alertString += _("- either Enrollment period or Until date must be provided") + "\n";
74                 }
75                 if(ff.enrolmentperioddate.value && ff.enrolmentperiod.value){
76                         document.getElementById('enrolmentmessage').className = "error";
77                         return false;
78                 }
79                 
80                 if (ok) { // if there is a problem
81                     alert(_alertString);
82                     return false;
83                 }
84                 // if all is good
85                 ff.submit();
86         }
87         //]]>
88 </script>
89 </head>
90 <body>
91 <!-- TMPL_INCLUDE NAME="header.inc" -->
92 <!-- TMPL_INCLUDE NAME="patrons-admin-search.inc" -->
93
94 <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/categorie.pl">Patron Categories</a> &rsaquo; <!-- TMPL_IF NAME="categorycode" -->Modify category '<!-- TMPL_VAR NAME="categorycode" escape="html" -->'<!-- TMPL_ELSE -->New category<!-- /TMPL_IF --><!-- /TMPL_IF -->
95 <!-- TMPL_IF NAME="add_validate" --> <a href="/cgi-bin/koha/admin/categorie.pl">Patron Categories</a> &rsaquo; Data recorded<!-- /TMPL_IF -->
96 <!-- TMPL_IF NAME="delete_confirm" --> <a href="/cgi-bin/koha/admin/categorie.pl">Patron Categories</a> &rsaquo; <!-- TMPL_IF NAME="totalgtzero" -->Cannot Delete: Category <!-- TMPL_VAR NAME="categorycode" escape="html" --> in Use<!-- TMPL_ELSE -->Confirm Deletion of Category '<!-- TMPL_VAR NAME="categorycode" escape="html" -->'<!-- /TMPL_IF --><!-- /TMPL_IF -->
97 <!-- TMPL_IF NAME="delete_confirmed" --> <a href="/cgi-bin/koha/admin/categorie.pl">Patron Categories</a> &rsaquo; Category Deleted<!-- /TMPL_IF -->
98 <!-- TMPL_IF NAME="else" -->Patron Categories<!-- /TMPL_IF --></div>
99
100 <div id="doc3" class="yui-t2">
101    
102    <div id="bd">
103         <div id="yui-main">
104         <div class="yui-b">
105
106 <!-- TMPL_IF NAME="add_form" -->
107         
108
109
110         
111         <form name="Aform" action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
112         <input type="hidden" name="op" value="add_validate" />
113         <input type="hidden" name="checked" value="0" />
114 <!-- TMPL_IF NAME="categorycode" -->
115                 <h1>Modify category <!-- TMPL_VAR NAME="categorycode" escape="html" --></h1>
116         <!-- TMPL_ELSE -->
117                 <h1>New category</h1>
118         <!-- /TMPL_IF -->
119         <fieldset class="rows">
120         <ol><!-- TMPL_IF NAME="categorycode" -->
121         <li><span class="label">Category code</span><!-- TMPL_VAR NAME="categorycode" escape="html" -->
122                                 <input type="hidden" name="categorycode" value="<!-- TMPL_VAR NAME="categorycode" escape="html" -->" /><input type="hidden" name="is_a_modif" value="1" /></li>
123         <!-- TMPL_ELSE -->
124         <li><label for="categorycode">Category code: </label> &nbsp; <input type="text" name="categorycode" id="categorycode" size="10" maxlength="10" onblur="toUC(this)" /></li>
125         <!-- /TMPL_IF -->
126         <li><label for="description">Description: </label> &nbsp; <input type="text" name="description" id="description" size="40" maxlength="80" value="<!-- TMPL_VAR NAME="description" escape="html" -->" /></li>
127         <li><label for="enrolmentperiod">Enrollment period: </label> &nbsp; 
128                 <input type="text" name="enrolmentperiod" id="enrolmentperiod" size="3" maxlength="3" value="<!-- TMPL_IF NAME="enrolmentperiod" --><!-- TMPL_VAR NAME="enrolmentperiod" --><!-- /TMPL_IF -->" /> months <br />
129                 <label for="enrolmentperioddate">Until date: </label> &nbsp;
130                 <input type="text" name="enrolmentperioddate" id="enrolmentperioddate" value="<!-- TMPL_VAR NAME="enrolmentperioddate" -->" /> <img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" id="enrolmentperioddate_button" alt="Show Calendar" />
131                 <script type="text/javascript">
132             //<![CDATA[
133                Calendar.setup({
134                     inputField : "enrolmentperioddate",
135                     ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
136                         button : "enrolmentperioddate_button"
137                 });
138                 //]]>
139         </script>
140                 <div id="enrolmentmessage" class="hint">Cannot have "months" and "until date" at the same time</div>
141         </li>
142         <li><label for="dateofbirthrequired">Age required: </label> &nbsp; <input type="text" name="dateofbirthrequired" id="dateofbirthrequired" value="<!-- TMPL_VAR NAME="dateofbirthrequired" -->" size="3" maxlength="3" /> years</li>
143         <li><label for="upperagelimit">Upperage limit: </label> &nbsp; <input type="text" name="upperagelimit" id="upperagelimit" size="3" maxlength="3" value="<!-- TMPL_VAR NAME="upperagelimit" -->" /> years</li>
144         <li><label for="enrolmentfee">Enrollment fee: </label><input type="text" name="enrolmentfee" id="enrolmentfee" size="6" value="<!-- TMPL_VAR NAME="enrolmentfee" -->" /></li>
145         <li><label for="overduenoticerequired">Overdue notice required: </label> &nbsp; <select name="overduenoticerequired" id="overduenoticerequired">
146                         <!-- TMPL_IF NAME="overduenoticerequired" -->
147                                                 <option value="0">No</option>
148                                                 <option value="1" selected="selected">Yes</option>
149                         <!-- TMPL_ELSE -->
150                                                 <option value="0" selected="selected">No</option>
151                                                 <option value="1">Yes</option>
152                         <!-- /TMPL_IF -->
153                                         </select></li>
154         <li><label for="reservefee">Hold fee: </label><input type="text" name="reservefee" id="reservefee" size="6" value="<!-- TMPL_VAR NAME="reservefee" -->" /></li>
155         <li><label for="category_type">Category type: </label> &nbsp; <select name="category_type" id="category_type">
156                                                 <!-- TMPL_IF NAME="type_n" --><option value="" selected="selected">Select a Category type</option><!-- TMPL_ELSE --><option value="">Select a Category type</option><!-- /TMPL_IF -->
157                                         <!-- TMPL_IF NAME="type_A" --><option value="A" selected="selected">Adult</option><!-- TMPL_ELSE --><option value="A">Adult</option><!-- /TMPL_IF -->
158                                         <!-- TMPL_IF NAME="type_C" --><option value="C" selected="selected">Child</option><!-- TMPL_ELSE --><option value="C">Child</option><!-- /TMPL_IF -->
159                                         <!-- TMPL_IF NAME="type_S" --><option value="S" selected="selected">Staff</option><!-- TMPL_ELSE --><option value="S">Staff</option><!-- /TMPL_IF -->
160                                         <!-- TMPL_IF NAME="type_I" --><option value="I" selected="selected">Organization</option><!-- TMPL_ELSE --><option value="I">Organization</option><!-- /TMPL_IF -->
161                                         <!-- TMPL_IF NAME="type_P" --><option value="P" selected="selected">Professional</option><!-- TMPL_ELSE --><option value="P">Professional</option><!-- /TMPL_IF -->
162                                         <!-- TMPL_IF NXME="type_X" --><option value="X" selected="selected">Statistical</option><!-- TMPL_ELSE --><option value="X">Statistical</option><!-- /TMPL_IF -->
163                                         </select>
164         </li></ol>
165 </fieldset>
166
167     <!-- TMPL_IF NAME="EnhancedMessagingPreferences" -->
168       <fieldset class="rows">
169         <h4>Default messaging preferences for this patron category</h4>
170         <!-- TMPL_INCLUDE NAME="messaging-preference-form.inc" -->
171       </fieldset>
172     <!-- /TMPL_IF -->
173         <fieldset class="action"><input type="button" value="Save" onclick="Check(this.form);" /> </fieldset>
174         </form>
175
176 <!-- /TMPL_IF -->
177
178 <!-- TMPL_IF NAME="add_validate" -->
179 <h3>Data recorded</h3>
180         <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
181                 <input type="submit" value="OK" />
182         </form>
183
184 <!-- /TMPL_IF -->
185
186 <!-- TMPL_IF NAME="delete_confirm" -->
187         
188         <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
189         <fieldset><legend>      
190         <!-- TMPL_IF NAME="totalgtzero" -->
191         Category <!-- TMPL_VAR NAME="categorycode" escape="html" --> is in use.  Deletion not possible!<!-- TMPL_ELSE -->
192 Confirm Deletion of Category <!-- TMPL_VAR NAME="categorycode" escape="html" --><!-- /TMPL_IF --></legend>
193
194 <!-- TMPL_IF NAME="totalgtzero" --><div class="dialog alert"><strong>This category is used <!-- TMPL_VAR NAME="total" --> times</strong>. Deletion not possible</div><!-- /TMPL_IF -->
195         <table>
196         <tr><th scope="row">Category code: </th><td><!-- TMPL_VAR NAME="categorycode" escape="html" --></td></tr>
197         <tr><th scope="row">Description: </th><td><!-- TMPL_VAR NAME="description" escape="html" --></td></tr>
198         <tr><th scope="row">Enrollment period: </th>
199                 <td>
200                         <!-- TMPL_IF NAME="enrolmentperiod" -->
201                                 <!-- TMPL_VAR NAME="enrolmentperiod" --> months
202                         <!-- TMPL_ELSE -->
203                                 until <!-- TMPL_VAR NAME="enrolmentperioddate" -->
204                         <!-- /TMPL_IF -->
205                 </td>
206         </tr>
207         <tr><th scope="row">Age required: </th><td><!-- TMPL_VAR NAME="dateofbirthrequired" --> years</td></tr>
208         <tr><th scope="row">Upperage limit: </th><td><!-- TMPL_VAR NAME="upperagelimit" --> years</td></tr>
209         <tr><th scope="row">Enrollment fee: </th><td><!-- TMPL_VAR NAME="enrolmentfee" --></td></tr>
210         <tr><th scope="row">Receives overdue notices: </th><td><!-- TMPL_IF NAME="overduenoticerequired" -->Yes<!-- TMPL_ELSE -->No<!-- /TMPL_IF --></td></tr>
211         <tr><th scope="row">Hold fee: </th><td><!-- TMPL_VAR NAME="reservefee" --></td></tr>
212 </table>
213                 <fieldset class="action"><!-- TMPL_IF NAME="totalgtzero" -->
214 <input type="submit" value="OK" /></form>
215                 <!-- TMPL_ELSE -->
216                         <input type="hidden" name="op" value="delete_confirmed" />
217                         <input type="hidden" name="categorycode" value="<!-- TMPL_VAR NAME="categorycode" escape="html" -->" /> <input type="submit" value="Delete this Category" /> <a class="cancel" href="/cgi-bin/koha/admin/categorie.pl">Cancel</a> 
218                 <!-- /TMPL_IF --></fieldset></fieldset></form>
219 <!-- /TMPL_IF -->
220
221 <!-- TMPL_IF NAME="delete_confirmed" -->
222 <h3>Category Deleted</h3>
223
224         <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
225         <input type="submit" value="OK" />
226         </form>
227 <!-- /TMPL_IF -->
228
229 <!-- TMPL_IF NAME="else" -->
230
231 <div id="toolbar">
232         <script type="text/javascript">
233         //<![CDATA[
234
235         // prepare DOM for YUI Toolbar
236
237          $(document).ready(function() {
238             yuiToolbar();
239          });
240
241         // YUI Toolbar Functions
242
243         function yuiToolbar() {
244             new YAHOO.widget.Button("newcategory");
245         }
246
247         //]]>
248         </script>
249         <ul class="toolbar">
250         <li><a id="newcategory" href="/cgi-bin/koha/admin/categorie.pl?op=add_form">New Category</a></li>
251 </ul></div>
252
253 <h2>Patron Category Administration</h2>
254 <!-- TMPL_IF NAME="searchfield" -->
255                 You Searched for <!-- TMPL_VAR NAME="searchfield" --></span>
256         <!-- /TMPL_IF -->
257 <span id="pagertable_categorie" class="pager">
258         <form class="formpager">&nbsp;<strong>page(s)</strong>&nbsp;:
259                 <img src="<!-- TMPL_VAR name="interface" -->/prog/img/first.png" class="first"/>
260                 <img src="<!-- TMPL_VAR name="interface" -->/prog/img/prev.png" class="prev"/>
261                 <input type="text" size="5" class="pagedisplay"/>
262                 <img src="<!-- TMPL_VAR name="interface" -->/prog/img/next.png" class="next"/>
263                 <img src="<!-- TMPL_VAR name="interface" -->/prog/img/last.png" class="last"/>
264                 , entries/page : 
265                 <select class="pagesize">
266                 <option value="10">10</option>
267                         <option selected="selected" value="20">20</option>
268                         <option value="30">30</option>
269                         <option value="40">40</option>
270                         <option value="50">50</option>
271                         <option value="100">100</option>
272                 </select>
273         </form>
274 </span>
275         <table id="table_categorie">
276                 <thead>
277                         <th scope="col">Code</th>
278                         <th scope="col">Category name</th>
279                         <th scope="col">Type</th>
280                         <th scope="col">Enrollment period</th>
281                         <th scope="col">Age required</th>
282                         <th scope="col">Upper age limit</th>
283                         <th scope="col">Enrollment fee</th>
284                         <th scope="col">Overdue</th>
285                         <th scope="col">Hold fee</th>
286             <!-- TMPL_IF NAME="EnhancedMessagingPreferences" -->
287             <th scope="col">Messaging</th>
288             <!-- /TMPL_IF -->
289                         <th scope="col" colspan="2">&nbsp; </th>
290                 </thead>
291                 <!-- TMPL_LOOP NAME="loop" -->
292                 <!-- TMPL_UNLESS NAME="__odd__" -->
293                         <tr class="highlight">
294                 <!-- TMPL_ELSE -->
295                         <tr>
296                 <!-- /TMPL_UNLESS -->
297                         <td><!-- TMPL_VAR NAME="categorycode" escape="html" --></td>
298                         <td>
299                             <a href="<!-- TMPL_VAR NAME="script_name" -->?op=add_form&amp;categorycode=<!-- TMPL_VAR NAME="categorycode" escape="url" -->"><!-- TMPL_VAR NAME="description" escape="html" --></a>
300                         </td>
301                         <td>
302                             <!-- TMPL_IF NAME="type_A" -->Adult<!-- /TMPL_IF -->
303                             <!-- TMPL_IF NAME="type_C" -->Child<!-- /TMPL_IF -->
304                             <!-- TMPL_IF NAME="type_P" -->Prof.<!-- /TMPL_IF -->
305                             <!-- TMPL_IF NAME="type_I" -->Org.<!-- /TMPL_IF -->
306                             <!-- TMPL_IF NAME="type_S" -->Staff<!-- /TMPL_IF -->
307                             <!-- TMPL_IF NAME="type_X" -->Statistical<!-- /TMPL_IF -->
308                         </td>
309                         <td>
310                                 <!-- TMPL_IF NAME="enrolmentperiod" -->
311                                         <!-- TMPL_VAR NAME="enrolmentperiod" --> months
312                                 <!-- TMPL_ELSE -->
313                                         until <!-- TMPL_VAR NAME="enrolmentperioddate" -->
314                                 <!-- /TMPL_IF -->
315                         
316                         </td>
317                         <td><!-- TMPL_VAR NAME="dateofbirthrequired" --> years</td>
318                         <td><!-- TMPL_VAR NAME="upperagelimit" --> years</td>
319                         <td><!-- TMPL_VAR NAME="enrolmentfee" --></td>
320                         <td><!-- TMPL_IF NAME="overduenoticerequired" -->Yes<!-- TMPL_ELSE -->No<!-- /TMPL_IF --></td>
321                         <td><!-- TMPL_VAR NAME="reservefee" --></td>
322                         <!-- TMPL_IF NAME="EnhancedMessagingPreferences" -->
323                         <td>
324                             <!-- TMPL_IF NAME="messaging_prefs" -->
325                                 <!-- TMPL_LOOP NAME="messaging_prefs" -->
326                                     <!-- TMPL_VAR NAME="message_name" --> :
327                                     <!-- TMPL_LOOP NAME="transports" -->
328                                         <!-- TMPL_VAR NAME="transport" -->
329                                     <!-- /TMPL_LOOP -->
330                                 <!-- /TMPL_LOOP -->
331                                 <br />
332                             <!-- TMPL_ELSE -->
333                                 none
334                             <!-- /TMPL_IF -->
335                         </td>
336                         <!-- /TMPL_IF -->
337                         <td><a href="<!-- TMPL_VAR NAME="script_name" -->?op=add_form&amp;categorycode=<!-- TMPL_VAR NAME="categorycode" escape="url" -->">Edit</a></td>
338                                                 <td><a href="<!-- TMPL_VAR NAME="script_name" -->?op=delete_confirm&amp;categorycode=<!-- TMPL_VAR NAME="categorycode" escape="url" -->">Delete</a></td>
339                 </tr>
340                 <!-- /TMPL_LOOP -->
341         </table>
342 <!-- /TMPL_IF -->
343
344 </div>
345 </div>
346 <div class="yui-b">
347 <!-- TMPL_INCLUDE NAME="admin-menu.inc" -->
348 </div>
349 </div>
350 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->