Bug 12116 - Move fixFloat jQuery plugin outside of language-specific directory
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / virtualshelves / shelves.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; [% IF ( viewshelf ) %]Lists &rsaquo; Contents of [% shelfname | html %][% ELSE %]Lists[% END %][% IF ( shelves ) %] &rsaquo; Create new list[% END %][% IF ( edit ) %] &rsaquo; Edit list [% shelfname | html %][% END %]</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 [% IF ( viewshelf ) %]
5     <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
6     <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.fixFloat.js"></script>
7 [% END %]
8 <script type="text/javascript">
9 //<![CDATA[ 
10
11 var MSG_NO_ITEM_SELECTED = _("Nothing is selected.");
12 var MSG_REMOVE_FROM_LIST = _("Are you sure you want to remove these items from the list?");
13 var MSG_CONFIRM_DELETE_LIST = _("Are you sure you want to remove this list?");
14 [% IF ( viewshelf ) %]
15 $(document).ready(function(){
16     [% IF ( itemsloop ) %]$('#searchheader').fixFloat();[% END %]
17     $("span.clearall").html("<a id=\"CheckNone\" href=\"/cgi-bin/koha/shelves.pl\">"+_("Clear all")+"<\/a>");
18     $("span.checkall").html("<a id=\"CheckAll\" href=\"/cgi-bin/koha/shelves.pl\">"+_("Select all")+"<\/a>");
19     $("#CheckAll").click(function(){
20         $(".checkboxed").checkCheckboxes();
21         return false;
22     });
23     $("#CheckNone").click(function(){
24         $(".checkboxed").unCheckCheckboxes();
25         return false;
26     });
27     $(".placehold").on("click",function(e){
28         placeHold();
29         e.preventDefault();
30     });
31     $(".addtocart").show();
32     var param1 = "| <label for=\"addto\">"+_("Add to:")+"<\/label><select name=\"addto\" id=\"addto\"><option value=\"\"><\/option>";
33     [% IF ( intranetbookbag ) %]
34          param1 += "<option value=\"addtocart\">"+_("Cart")+"<\/option>";
35     [% END %]
36     [% IF ( virtualshelves ) %]
37         [% IF ( addbarshelves ) %]
38             param1 += "<optgroup label=\""+_("Your lists:")+"\">";
39             [% FOREACH addbarshelvesloo IN addbarshelvesloop %]
40                 [% IF ( shelfnumber != addbarshelvesloo.shelfnumber ) %]
41                     param1 += "<option id=\"s[% addbarshelvesloo.shelfnumber %]\" value=\"addtolist\">[% addbarshelvesloo.shelfname |html %]<\/option>";
42                 [% END %]
43             [% END %]
44             param1 += "<\/optgroup>";
45         [% END %]
46         [% IF ( addpubshelves ) %]
47             param1 += "<optgroup label=\""+_("Public lists:")+"\">";
48             [% FOREACH addpubshelvesloo IN addpubshelvesloop %]
49                 [% IF ( shelfnumber != addpubshelvesloo.shelfnumber ) %]
50                     param1 += "<option id=\"s[% addpubshelvesloo.shelfnumber %]\" value=\"addtolist\">[% addpubshelvesloo.shelfname |html %]<\/option>";
51                 [% END %]
52             [% END %]
53             param1 += "<\/optgroup>";
54         [% END %]
55         [% IF ( ( addbarshelvesloop && addbarshelvesloop.size > 9 ) || (addpubshelvesloop && addpubshelvesloop.size > 9 )) %]
56             param1 += "<option value=\"morelists\">[ "+_("More lists")+" ]<\/option>";
57         [% END %]
58         param1 +="<option value=\"newlist\">"+_("[ New list ]")+"<\/option>"
59     [% END %]
60     param1 += "<\/select> <button id=\"cartsubmit\" type=\"submit\" class=\"btn btn-mini\">"+_("Save")+"</button>";
61     $("span.addto").html(param1);
62     $("#cartsubmit").on("click",function(e){
63         cartList();
64         e.preventDefault();
65     });
66     $("#addto").change(function(){
67         cartList();
68     });
69     $(".addto").find("input:submit").click(function(e){
70         e.preventDefault();
71         cartList();
72     });
73     $("#selection_ops").show();
74     $(".merge-items").on("click",function(e){
75         e.preventDefault();
76         MergeItems();
77     });
78     $("#listform").on("submit",function(e){
79
80     });
81     $(".list-remove").on("click",function(e){
82         if($(".selection").filter(":checked").length > 0){
83             return confirm(MSG_REMOVE_FROM_LIST);
84         } else {
85             alert(MSG_NO_ITEM_SELECTED);
86             e.preventDefault();
87         }
88     });
89 });
90 [% END %]
91
92         function confirmDelete(message){
93                 if (window.confirm(message)) {
94                     location.href="/cgi-bin/koha/virtualshelves/shelves.pl?[% IF ( showprivateshelves ) %]display=privateshelves&[% END %]shelves=1&DEL-[% shelfnumber %]=1&shelfoff=[% shelfoff %]";
95                 } else { 
96                         return false;
97                 }
98         }
99
100     /**
101      * This function checks if the adequate number of records are checked for merging
102      */
103     function MergeItems() {
104         var checkboxes = $("input:checkbox:checked");
105         var nbCheckbox = checkboxes.length;
106         if (nbCheckbox != 2) {
107             alert(_("Two records must be selected for merging."));
108         } else {
109             location.href='/cgi-bin/koha/cataloguing/merge.pl?biblionumber=' + checkboxes[0].value + '&amp;biblionumber=' + checkboxes[1].value;
110         }
111         return false;
112     }
113
114     /**
115      * This function checks all checkboxes if all are empty,
116      * or unchecks all if any already checked.
117      */
118     function CheckAll(){
119         var checkboxes = document.getElementsByTagName('input');
120         var nbCheckbox = checkboxes.length;
121         var check = areAllChecked();
122         for(var i=0;i<nbCheckbox;i++){
123             if(checkboxes[i].getAttribute('type') == "checkbox" ){
124                 checkboxes[i].checked = (check) ? 0 : 1;
125             }
126         }
127     }
128     /**
129      * This function returns true if ALL checkboxes are checked
130      */
131     function areAllChecked(){
132         var checkboxes = document.getElementsByTagName('input');
133         var nbCheckbox = checkboxes.length;
134         for(var i=0;i<nbCheckbox;i++){
135             if(checkboxes[i].getAttribute('type') == "checkbox" ){
136                 if(checkboxes[i].checked == 0){
137                     return false;
138                 }
139             }
140         }
141         return true;
142     }
143
144 function placeHold () {
145     var checkedItems = $(".selection:checked");
146     if ($(checkedItems).size() == 0) {
147         alert(MSG_NO_ITEM_SELECTED);
148         return false;
149     }
150     var bibs = "";
151     $(checkedItems).each(function() {
152         bibs += $(this).val() + "/";
153     });
154     $("#hold_form_biblios").val(bibs);
155     $("#hold_form").submit();
156     return false;
157 }
158
159     function cartList(){
160         var checkboxes = $("#searchresults").find(":checkbox");
161         var vshelf = vShelfAdd(checkboxes);
162         if($("#addto").find("option:selected").attr("value") == "addtolist"){
163             var shelfnumber = $("#addto").find("option:selected").attr("id").replace("s","");
164             if (vshelf) {
165                  openWindow('/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?shelfnumber='+shelfnumber+'&confirm=1&' + vshelf,'popup',500,500);
166             }
167             return false;
168         } else if($("#addto").find("option:selected").attr("value") == "newlist"){
169             if (vshelf) {
170                 openWindow('/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?newshelf=1&' + vshelf,'popup',500,500);
171             }
172             return false;
173         } else if($("#addto").find("option:selected").attr("value") == "morelists"){
174             if (vshelf) {
175                 openWindow('/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?' + vshelf,'popup',500,500);
176             }
177             return false;
178         }
179         if($("#addto").find("option:selected").attr("value") == "addtocart"){
180             addMultiple(checkboxes);
181             return false;
182         }
183     }
184 //]]>
185 </script>
186 </head>
187 <body id="lists_shelves" class="lists">
188 [% INCLUDE 'header.inc' %]
189 [% INCLUDE 'cat-search.inc' %]
190
191 [% BLOCK list_permissions %]
192     <li>
193         <label for="permissions">Permissions: </label>
194         <select name="allow_add" id="allow_add">
195             [% IF allow_add %]<option value="0">Do not allow</option>[% ELSE %]<option value="0" selected="selected">Do not allow</option>[% END %]
196             [% IF allow_add %]<option value="1" selected="selected">Allow</option>[% ELSE %]<option value="1">Allow</option>[% END %]
197         </select>
198         &nbsp;<span>anyone else to add entries.</span>
199     </li>
200     <li>
201         <label>&nbsp;</label>
202         <select name="allow_delete_own" id="allow_delete_own">
203             [% IF allow_delete_own %]<option value="0">Do not allow</option>[% ELSE %]<option value="0" selected="selected">Do not allow</option>[% END %]
204             [% IF allow_delete_own %]<option value="1" selected="selected">Allow</option>[% ELSE %]<option value="1">Allow</option>[% END %]
205         </select>
206         &nbsp;<span>anyone to remove his own contributed entries.</span>
207     </li>
208     <li>
209         <label>&nbsp;</label>
210         <select name="allow_delete_other" id="allow_delete_other">
211             [% IF allow_delete_other %]<option value="0">Do not allow</option>[% ELSE %]<option value="0" selected="selected">Do not allow</option>[% END %]
212             [% IF allow_delete_other %]<option value="1" selected="selected">Allow</option>[% ELSE %]<option value="1">Allow</option>[% END %]
213         </select>
214         &nbsp;<span>anyone to remove other contributed entries.</span>
215     </li>
216 [% END %]
217 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/virtualshelves/shelves.pl">Lists</a> [% IF ( category1 ) %] &rsaquo; [% IF ( viewshelf || edit ) %] <a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves">Your lists</a> [% ELSE %] Your lists [% END %] [% ELSIF ( category2 ) %] &rsaquo; [% IF ( viewshelf ) %] <a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=publicshelves">Public lists</a> [% ELSE %] Public lists [% END %] [% ELSIF ( showprivateshelves ) %] &rsaquo; [% IF ( viewshelf || edit ) %] <a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves">Your lists</a> [% ELSE %] Your lists [% END %] [% ELSIF ( showpublicshelves ) %] &rsaquo; [% IF ( viewshelf || edit ) %] <a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=publicshelves">Public lists</a> [% ELSE %] Public lists [% END %] [% END %]
218
219 [% IF ( viewshelf ) %]&rsaquo; Contents of <i>[% shelfname | html %]</i>[% END %][% IF ( shelves ) %] &rsaquo; Create new list[% END %][% IF ( edit ) %] &rsaquo; Edit list <i>[% shelfname | html %]</i>[% END %]</div>
220
221 <div id="doc2" class="yui-t7">
222  <div id="bd">
223   <div id="yui-main">
224    <div class="yui-g">[% INCLUDE 'virtualshelves-toolbar.inc' %]
225    </div>
226 [% IF ( paramsloop ) %]
227 [% FOREACH paramsloo IN paramsloop %]
228 <div class="yui-ge">
229     <div class="yui-u first">
230         [% IF ( paramsloo.already ) %]<div class="dialog alert">A List named [% paramsloo.already %] already exists!</div>[% END %]
231         [% IF ( paramsloo.addshelf_failed ) %]<div class="dialog alert">List could not be created. [% IF loggedinuser==0 %](Do not use the database administrator account.)[% END %]</div>[% END %]
232                 [% IF ( paramsloo.status ) %]<div class="dialog alert">[% paramsloo.string %]</div>[% END %]
233                 [% IF ( paramsloo.nobarcode ) %]<div class="dialog alert">ERROR: No barcode given.</div>[% END %] 
234         [% IF ( paramsloo.noshelfnumber ) %]<div class="dialog alert">ERROR: No list number given.</div>[% END %]
235                 [% IF ( paramsloo.need_confirm ) %]
236                 <div class="dialog alert">The list <i>[% paramsloo.need_confirm %]</i> is not empty.
237                         <br />It has <b>[% paramsloo.count %]</b> entries.
238                         <br />Use the "Confirm" button below to confirm deletion.
239                 </div>
240                 [% END %]
241                 [% IF ( paramsloo.nopermission ) %]
242                 <div class="dialog alert">ERROR: You do not have adequate permission for that action on list [% paramsloo.nopermission %].</div>
243                 [% END %]
244                 [% IF ( paramsloo.failgetitem ) %]
245                 <div class="dialog alert">ERROR: No item found with barcode [% paramsloo.failgetitem %].</div>
246                 [% END %] 
247                 [% IF ( paramsloo.duplicatebiblio ) %]
248                 <div class="dialog alert">A record matching barcode <b>[% paramsloo.duplicatebiblio %]</b> has already been added.</div>
249                 [% END %]
250                 [% IF ( paramsloo.nothingdeleted) %]
251                       <div class="dialog message">Warning: You could not delete any of the selected items from this list.</div>
252                 [% END %]
253                 [% IF ( paramsloo.somedeleted) %]
254                       <div class="dialog message">Warning: You could not delete all selected items from this list.</div>
255                 [% END %]
256                 [% IF ( paramsloo.modifyfailure) %]
257                       <div class="dialog message">ERROR: List could not be modified.</div>
258                 [% END %]
259         </div>
260 </div>
261 [% END %]
262 [% END %] 
263
264 [% IF ( viewshelf ) %]
265    <div class="yui-g">
266     [% IF ( itemsloop ) %]
267
268     <h3>Contents of <i>[% shelfname | html %]</i></h3>
269     <div class="pages">[% pagination_bar %]</div>
270     <form action="/cgi-bin/koha/virtualshelves/shelves.pl" id="listform" method="post" class="checkboxed">
271         <input type="hidden" name="viewshelf" value="[% shelfnumber %]" />
272         <input type="hidden" name="modifyshelfcontents" value="1" />
273
274 [% IF direction == 'asc' %]
275     [% SET new_direction = 'desc' %]
276 [% ELSE %]
277     [% SET direction = 'desc' %]
278     [% SET new_direction = 'asc' %]
279 [% END %]
280
281 <div id="searchheader">
282     [% IF ( itemsloop ) %]
283         <div id="selection_ops"><span class="checkall"></span> |
284         <span class="clearall"></span>
285
286         <span class="addto">| </span>
287         &nbsp;
288         [% IF ( CAN_user_reserveforothers && DisplayMultiPlaceHold ) %]
289             <div class="btn-group"><button class="btn btn-mini placehold"><i class="icon-hold"></i> Place hold</button></div>
290         [% END %]
291         [% IF ( allowremovingitems ) %]
292             <div class="btn-group"><button type="submit" class="btn btn-mini list-remove"><i class="icon-remove-sign"></i> Remove selected</button></div>
293         [% END %]
294         [% IF ( CAN_user_editcatalogue_edit_catalogue ) %]<div class="btn-group"><button type="submit" class="btn btn-mini merge-items"><i class="icon-merge"></i> Merge selected</button></div>[% END %]
295         </div>
296     [% END %]
297 </div>
298
299     <table id="searchresults">
300             <tr>
301                 [% IF ( itemsloop ) %]<th class="checkall">&nbsp;</th>[% END %]
302
303                 [% UNLESS ( item_level_itypes ) %]<th>Item type</th>[% END %]
304                 <th>
305                     <a href="/cgi-bin/koha/virtualshelves/shelves.pl?viewshelf=[% shelfnumber %]&amp;sort=title&amp;direction=[% IF sort != 'title' %]asc[% ELSE %][% new_direction %][% END %]">Title</a>
306                     [% IF sort == 'title' %]
307                         <img src="[% interface %]/[% theme %]/img/[% direction %].gif" alt="[% direction %] sort" />
308                     [% ELSE %]
309                         <img src="[% interface %]/[% theme %]/img/ascdesc.gif" alt="" />
310                     [% END %]
311                 </th>
312                 <th>
313                     <a href="/cgi-bin/koha/virtualshelves/shelves.pl?viewshelf=[% shelfnumber %]&amp;sort=author&amp;direction=[% IF sort != 'author' %]asc[% ELSE %][% new_direction %][% END %]">Author</a>
314                    [% IF sort == 'author' %]
315                         <img src="[% interface %]/[% theme %]/img/[% direction %].gif" alt="[% direction %] sort" />
316                    [% ELSE %]
317                        <img src="[% interface %]/[% theme %]/img/ascdesc.gif" alt="" />
318                    [% END %]
319                  </th>
320                 <th>Date added</th>
321                 <th>
322                     <a href="/cgi-bin/koha/virtualshelves/shelves.pl?viewshelf=[% shelfnumber %]&amp;sort=itemcallnumber&amp;direction=[% IF sort != 'itemcallnumber' %]asc[% ELSE %][% new_direction %][% END %]">Call number</a>
323                    [% IF sort == 'itemcallnumber' %]
324                         <img src="[% interface %]/[% theme %]/img/[% direction %].gif" alt="[% direction %] sort" />
325                    [% ELSE %]
326                        <img src="[% interface %]/[% theme %]/img/ascdesc.gif" alt="" />
327                    [% END %]
328                  </th>
329             </tr>
330                 [% FOREACH itemsloo IN itemsloop %]
331                         [% UNLESS ( loop.odd ) %]
332                         <tr class="highlight">
333                         [% ELSE %]
334                         <tr>
335                         [% END %]
336                         [% IF ( itemsloop ) %]
337                         <td>
338                                 [% IF ( itemsloo.confirm ) %]
339                                 <input type="hidden"   name="CONFIRM-[% itemsloo.confirm %]" />
340                                 <input type="checkbox" class="selection" value="[% itemsloo.biblionumber %]" name="REM-[% itemsloo.biblionumber %]" checked />
341                                 [% ELSE %]
342                                 <input type="checkbox" class="selection" value="[% itemsloo.biblionumber %]" name="REM-[% itemsloo.biblionumber %]" />
343                                 [% END %]
344                         </td>
345                         [% END %]
346                         [% UNLESS ( item_level_itypes ) %]<td>
347                 [% UNLESS ( noItemTypeImages || !itemsloo.imageurl ) %]<img src="[% itemsloo.imageurl %]" alt="[% itemsloo.description %]" title="[% itemsloo.description %]" />[% END %][% itemsloo.description %]
348                         </td>[% END %]
349                         <td>
350                 [% IF ( itemsloo.XSLTBloc ) %]
351                     [% itemsloo.XSLTBloc %]
352                 [% ELSE %]
353                     [% INCLUDE 'biblio-default-view.inc' biblionumber = itemsloo.biblionumber %]
354                     [% itemsloo.title |html %][% FOREACH subtitl IN itemsloo.subtitle %] [% subtitl.subfield %][% END %]</a>
355                 [% END %]
356                     <p class="hold">
357                         [% IF ( itemsloo.notforloan ) %]
358                             <span class="noholdstext">No holds allowed</span>
359                         [% ELSE %]
360                             [% IF ( itemsloo.ITEM_RESULTS.size ) %]
361                                 <a id="reserve_[% itemsloo.biblionumber %]" href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% itemsloo.biblionumber %]">Holds</a>
362                                 [% IF ( holdfor ) %] <span class="holdforlink">| <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% itemsloo.biblionumber %]&amp;findborrower=[% holdfor_cardnumber %]">Place hold for [% holdfor_firstname %] [% holdfor_surname %] ([% holdfor_cardnumber %])</a></span>[% END %]
363                             [% ELSE %]
364                                 <span class="noholdstext">No holds allowed</span>
365                             [% END %]
366                         [% END %]
367                         [% IF ( CAN_user_editcatalogue_edit_catalogue ) %]
368                             | <a href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=[% itemsloo.biblionumber %]">Edit record</a>
369                         [% END %]
370                         [% IF ( CAN_user_editcatalogue_edit_items ) %]
371                             | <a href="/cgi-bin/koha/cataloguing/additem.pl?biblionumber=[% itemsloo.biblionumber %]">Edit items</a>
372                         [% END %]
373                     </p>
374                         </td>
375                         <td>[% itemsloo.author %]</td>
376                         <td>[% itemsloo.dateadded %]</td>
377                         <td>
378                 <ul>
379                 [% FOREACH result IN itemsloo.ITEM_RESULTS %]
380                     <li>[% result.holdingbranch %] [% IF ( result.location_intranet ) %] ([% result.location_intranet %]) [% END %]
381                         [% IF ( result.itemcallnumber ) %]
382                             [<a href="/cgi-bin/koha/catalogue/search.pl?idx=callnum&amp;q=[% result.itemcallnumber |url %]">[% result.itemcallnumber %]</a>]
383                         [% END %]
384                     </li>
385                 [% END %]
386                 </ul>
387             </td>
388                         </tr>
389                 [% END %]<!-- /itemsloop -->
390     </table>
391     <div class="pages">[% pagination_bar %]</div>
392 </form>
393
394         [% END %]
395    </div>
396 [% END %]<!-- /viewshelf -->
397
398 [% IF ( allowaddingitem ) %]
399 <div class="yui-g">
400 <form action="/cgi-bin/koha/virtualshelves/shelves.pl" method="post">
401  <fieldset class="brief">
402     <legend>Add an item to <i>[% shelfname | html %]</i></legend>
403         <ol>
404             <li>
405                 <label for="addbarcode">Barcode:</label>
406                 <input name="addbarcode" type="text" id="addbarcode" size="14" />
407                 <input type="hidden" name="viewshelf" value="[% shelfnumber %]" />
408                 <input type="hidden" name="modifyshelfcontents" value="1" />
409                 <input type="submit" value="Add" />
410             </li>
411         </ol>
412  </fieldset>
413 </form>
414 </div>
415 [% END %]<!-- /allowaddingitem -->
416
417 [% IF ( debug ) %]
418   [% IF ( edit ) %]<div>Edit is on ([% shelfname | html %])</div>[% END %]
419   [% IF ( seflag ) %]<div>seflag is on ([% seflag %])</div>[% END %]
420 [% END %]
421
422 [% IF ( seflag ) %]
423 <div class="yui-ge">
424     <div class="yui-u first">
425     <form method="post" action="/cgi-bin/koha/virtualshelves/shelves.pl" class="validated">
426         <fieldset class="rows">
427
428     [% IF ( shelves ) %]
429         <legend>Create a new list</legend>
430         <input type="hidden" name="shelves" value="1" />
431         <ol>
432         <li><label class="required" for="addshelf">List name:</label><input id="addshelf" type="text" name="addshelf" size="25" required="required" class="required" />
433             <span class="required">Required</span>
434         </li>
435         <li><span class="label">Owner: </span><input type="hidden" name="owner" id="owner" value="[% loggedinuser %]" />[% loggedinusername %]</li>
436         <li><label for="sortfield" >Sort this list by: </label>
437         <select name="sortfield" id="sortfield">
438             <option value="title">Title</option>
439             <option value="author">Author</option>
440             <option value="copyrightdate">Copyrightdate</option>
441             <option value="itemcallnumber">Call number</option>
442         </select></li>
443         <li><label for="category">Category: </label>
444             <select name="category" id="category">
445                   <option value="1">Private</option>
446                   <option value="2">Public</option>
447                      </select></li>
448             [% INCLUDE list_permissions %]
449         </ol>
450     [% END %]
451
452     [% IF ( edit ) %]
453         <legend>Edit list <i>[% shelfname | html %]</i></legend>
454         <input type="hidden" name="display" value="[% display %]" />
455         <input type="hidden" name="op" value="modifsave" />
456         [% IF ( showprivateshelves ) %]<input type="hidden" name="display" value="privateshelves" />[% END %]
457         <input type="hidden" name="shelfnumber" value="[% shelfnumber %]" />
458                 <ol>
459             <li><label for="shelfname" class="required">Name: </label><input type="text" id="shelfname" name="shelfname" size="25" value="[% shelfname |html %]" required="required" class="required" />
460             <span class="required">Required</span>
461         </li>
462                 <li><label for="owner">Owner: </label><input type="hidden" id="owner" name="owner" value="[% IF ( owner ) %][% ownername %][% ELSE %][% loggedinusername %][% END %]" />[% IF ( owner ) %][% ownername %][% ELSE %][% loggedinusername %][% END %]</li>
463                 <li><label for="sortfield" >Sort this list by: </label>
464                 <select name="sortfield">
465         [% IF ( sortfield == "title" ) %]<option value="title" selected="selected">Title</option>[% ELSE %]<option value="title">Title</option>[% END %]
466         [% IF ( sortfield == "author" ) %]<option value="author" selected="selected">Author</option>[% ELSE %]<option value="author">Author</option>[% END %]
467         [% IF ( sortfield == "copyrightdate" ) %]<option value="copyrightdate" selected="selected">Copyrightdate</option>[% ELSE %]<option value="copyrightdate">Copyrightdate</option>[% END %]
468         [% IF ( sortfield == "itemcallnumber" ) %]<option value="itemcallnumber" selected="selected">Call number</option>[% ELSE %]<option value="itemcallnumber">Call number</option>[% END %]
469                 </select></li>
470                 <li><label for="category">Category: </label>
471                         <select id="category" name="category">
472                         [% IF ( category1 ) %]
473                                 <option value="1" selected="selected">Private</option>
474                         [% ELSE %]
475                                 <option value="1">Private</option>
476                         [% END %]
477                         [% IF ( category2 ) %]
478                                 <option value="2" selected="selected">Public</option>
479                         [% ELSE %]
480                                 <option value="2">Public</option>
481                         [% END %]
482                        </select></li>
483             [% INCLUDE list_permissions %]
484             </ol>
485         [% END %]
486
487                 </fieldset>
488
489     <fieldset class="action"><input type="submit" value="Save" class="submit" />
490         [% IF ( showprivateshelves ) %]
491             <a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves" class="cancel">Cancel</a>
492         [% ELSE %]
493             [% IF ( display == "viewshelf" ) %]
494                <a href="/cgi-bin/koha/virtualshelves/shelves.pl?viewshelf=[% shelfnumber %]" class="cancel">Cancel</a>
495             [% ELSE %]
496                 <a href="/cgi-bin/koha/virtualshelves/shelves.pl" class="cancel">Cancel</a>
497             [% END %]
498         [% END %]
499     </fieldset>
500     </form>
501     </div>
502     <div class="yui-u">
503         <div class="help"><ul>
504             <li>A <b>Private</b> list is managed by you and can be seen only by you.</li>
505             <li> A <b>Public</b> list can be seen by everybody, but managed only by you.</li>
506             <li>The owner of a list is always allowed to add entries, but needs permission to remove.</li>
507         </ul>
508         </div>
509     </div>
510 </div>
511 [% END %]<!-- /seflag -->
512
513 [% UNLESS ( vseflag ) %]
514         <h2>Lists</h2>
515         <div class="statictabs">
516         <ul>
517         [% IF ( showprivateshelves ) %]
518             <li id="privateshelves_tab" class="active"><a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves">Your lists</a></li>
519         [% ELSE %]
520             <li id="privateshelves_tab" class=""><a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves">Your lists</a></li>
521         [% END %]
522         [% IF ( showpublicshelves ) %]
523             <li id="publicshelves_tab" class="active"><a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=publicshelves">Public lists</a></li>
524         [% ELSE %]
525             <li id="publicshelves_tab" class=""><a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=publicshelves">Public lists</a></li>
526         [% END %]
527         </ul>
528         [% IF ( showprivateshelves ) %]
529         <div id="privateshelves" class="tabs-container" style="display:block;">
530                 [% ELSE %]
531         <div id="privateshelves" class="tabs-container" style="display:none;">
532                 [% END %]
533             [% IF ( shelveslooppriv ) %]
534                         <div class="pages">[% pagination_bar %]</div>
535                         <table>
536                         <tr><th>List Name</th><th>Contents</th><th>Sort by</th><th>Type</th><th>Options</th></tr>
537                 [% FOREACH shelveslooppri IN shelveslooppriv %]
538                     [% IF ( shelveslooppri.toggle ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
539         <td><a href="shelves.pl?[% IF ( shelveslooppri.showprivateshelves ) %]display=privateshelves&amp;[% END %]viewshelf=[% shelveslooppri.shelf %]&amp;shelfoff=[% shelfoff %]">[% shelveslooppri.shelfname |html %]</a></td>
540         <td>[% shelveslooppri.count %] item(s)</td>
541         <td>[% IF ( shelveslooppri.sortfield == "author" ) %]Author[% ELSIF ( shelveslooppri.sortfield == "copyrightdate" ) %]Year[% ELSIF (shelveslooppri.sortfield == "itemcallnumber") %]Call number[% ELSE %]Title[% END %]</td>
542         <td>[% IF ( shelveslooppri.viewcategory1 ) %][% IF !shelveslooppri.shares %]Private[% ELSE %]Shared[% END %][% END %]
543                         [% IF ( shelveslooppri.viewcategory2 ) %]Public[% END %]
544                 </td>
545         <td>
546             [% IF ( shelveslooppri.mine ) %]
547                                 <form action="merge.pl" method="get">
548                                         <input type="hidden" name="shelf" value="[% shelveslooppri.shelf %]" />
549                                 </form>
550                                 <form action="shelves.pl" method="get">
551                                         <input type="hidden" name="shelfnumber" value="[% shelveslooppri.shelf %]" />
552                                         <input type="hidden" name="op" value="modif" />
553                     <input type="hidden" name="display" value="privateshelves" />
554                                         <input type="submit" class="editshelf" value="Edit" />
555                                 </form>
556                                 <form action="shelves.pl" method="post">
557                                     <input type="hidden" name="shelfoff" value="[% shelfoff %]" />
558                                         <input type="hidden" name="shelves" value="1" />
559                     <input type="hidden" name="display" value="privateshelves" />
560                                         <input type="hidden" name="DEL-[% shelveslooppri.shelf %]" value="1" />
561                                         [% IF ( shelveslooppri.confirm ) %]
562                                         <input type="hidden" name="CONFIRM-[% shelveslooppri.confirm %]" value="1" />
563                                         <input type="submit" class="approve" value="Confirm" />
564                                         [% ELSE %]
565                     <input type="submit" class="deleteshelf" onclick="return confirmDelete(MSG_CONFIRM_DELETE_LIST);" value="Delete" />
566                                         [% END %]
567                                 </form>
568                         [% ELSE %]
569                                 None
570                         [% END %]
571                 </td>
572                 </tr>
573                 [% END %]
574         </table>
575             [% ELSE %]
576             <p>No private lists.</p>
577             [% END %]<!-- /shelveslooppriv -->
578                 </div><!-- /privateshelves -->
579
580         [% IF ( showpublicshelves ) %]
581         <div id="publicshelves" class="tabs-container" style="display:block;">
582                 [% ELSE %]
583         <div id="publicshelves" class="tabs-container" style="display:none;">
584                 [% END %]
585         [% IF ( shelvesloop ) %]
586                 <div class="pages">[% pagination_bar %]</div>
587         <table>
588         <tr><th>List Name</th><th>Created by</th><th>Contents</th><th>Sort By</th><th>Type</th><th>Options</th></tr>
589             [% FOREACH shelvesloo IN shelvesloop %]
590                 [% IF ( shelvesloo.toggle ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
591                 <td><a href="shelves.pl?viewshelf=[% shelvesloo.shelf %]">[% shelvesloo.shelfname |html %]</a></td>
592         <td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% shelvesloo.owner %]">[% shelvesloo.ownername %]</td>
593                 <td>[% shelvesloo.count %] item(s)</td>
594         <td>[% IF ( shelvesloo.sortfield == "author" ) %]Author[% ELSIF ( shelvesloo.sortfield == "copyrightdate" ) %]Year[% ELSIF (shelvesloo.sortfield == "itemcallnumber") %]Call number[% ELSE %]Title[% END %]</td>
595         <td>[% IF ( shelvesloo.viewcategory1 ) %]Private[% END %]
596                         [% IF ( shelvesloo.viewcategory2 ) %]Public[% END %]
597                 </td>
598         <td>
599             [% IF ( shelvesloo.manageshelf ) %]
600                                 <form action="shelves.pl" method="get">
601                                         <input type="hidden" name="shelfnumber" value="[% shelvesloo.shelf %]" />
602                                         <input type="hidden" name="op" value="modif" />
603                                         <input type="submit" class="editshelf" value="Edit" />
604                                 </form>
605                                 <form action="shelves.pl" method="post">
606                                         <input type="hidden" name="shelfoff" value="[% shelfoff %]" />
607                                         <input type="hidden" name="shelves" value="1" />
608                                         <input type="hidden" name="DEL-[% shelvesloo.shelf %]" value="1" />
609                                         [% IF ( shelvesloo.confirm ) %]
610                                         <input type="hidden" name="CONFIRM-[% shelvesloo.confirm %]" value="1" />
611                                         <input type="submit" class="approve" value="Confirm" />
612                                         [% ELSE %]
613                     <input type="submit" class="deleteshelf" onclick="return confirmDelete(MSG_CONFIRM_DELETE_LIST);" value="Delete" />
614                                         [% END %]
615                                 </form>
616                         [% ELSE %]
617                                 None
618                         [% END %]
619                 </td>
620                 </tr>
621             [% END %]
622         </table>
623         [% ELSE %]
624             [% IF ( showpublicshelves ) %]<p>No public lists.</p>[% END %]
625         [% END %]<!-- /shelvesloop -->
626         </div><!-- /publicshelves -->
627                 </div>
628 [% END %]
629
630 <form id="hold_form" method="get" action="/cgi-bin/koha/reserve/request.pl">
631     <!-- Value will be set here by placeHold() -->
632     <input id="hold_form_biblios" type="hidden" name="biblionumbers" value="" />
633     <input type="hidden" name="multi_hold" value="1"/>
634 </form>
635
636 </div>
637 </div>
638 [% INCLUDE 'intranet-bottom.inc' %]