Bug 10714 [Follow-up] Redirect to list contents view upon cancel after initiating...
[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="[% themelang %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
6     <script type="text/javascript" src="[% themelang %]/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 records from the shelf?");
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      * This function checks to make sure a list title is assigned
160      */
161       function Check(f) {
162                 var _alertString="";
163                 var alertString2;
164
165             if($("#shelfname").val() == ""){
166             _alertString += "- "+_("You must enter a List Name") + "\n";
167                 }
168
169                 if (_alertString.length==0) {
170             f.submit();
171                 } else {
172                         alertString2 = _("Form not submitted because of the following problem(s)");
173                         alertString2 += "\n------------------------------------------------------------------------------------\n\n";
174                         alertString2 += _alertString;
175                         alert(alertString2);
176                 }
177         }
178     function cartList(){
179         var checkboxes = $("#searchresults").find(":checkbox");
180         var vshelf = vShelfAdd(checkboxes);
181         if($("#addto").find("option:selected").attr("value") == "addtolist"){
182             var shelfnumber = $("#addto").find("option:selected").attr("id").replace("s","");
183             if (vshelf) {
184                  openWindow('/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?shelfnumber='+shelfnumber+'&confirm=1&' + vshelf,'popup',500,500);
185             }
186             return false;
187         } else if($("#addto").find("option:selected").attr("value") == "newlist"){
188             if (vshelf) {
189                 openWindow('/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?newshelf=1&' + vshelf,'popup',500,500);
190             }
191             return false;
192         } else if($("#addto").find("option:selected").attr("value") == "morelists"){
193             if (vshelf) {
194                 openWindow('/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?' + vshelf,'popup',500,500);
195             }
196             return false;
197         }
198         if($("#addto").find("option:selected").attr("value") == "addtocart"){
199             addMultiple(checkboxes);
200             return false;
201         }
202     }
203 //]]>
204 </script>
205 </head>
206 <body id="lists_shelves" class="lists">
207 [% INCLUDE 'header.inc' %]
208 [% INCLUDE 'cat-search.inc' %]
209
210 [% BLOCK list_permissions %]
211     <li>
212         <label for="permissions">Permissions: </label>
213         <select name="allow_add" id="allow_add">
214             [% IF allow_add %]<option value="0">Do not allow</option>[% ELSE %]<option value="0" selected="selected">Do not allow</option>[% END %]
215             [% IF allow_add %]<option value="1" selected="selected">Allow</option>[% ELSE %]<option value="1">Allow</option>[% END %]
216         </select>
217         &nbsp;<span>anyone else to add entries.</span>
218     </li>
219     <li>
220         <label>&nbsp;</label>
221         <select name="allow_delete_own" id="allow_delete_own">
222             [% IF allow_delete_own %]<option value="0">Do not allow</option>[% ELSE %]<option value="0" selected="selected">Do not allow</option>[% END %]
223             [% IF allow_delete_own %]<option value="1" selected="selected">Allow</option>[% ELSE %]<option value="1">Allow</option>[% END %]
224         </select>
225         &nbsp;<span>anyone to remove his own contributed entries.</span>
226     </li>
227     <li>
228         <label>&nbsp;</label>
229         <select name="allow_delete_other" id="allow_delete_other">
230             [% IF allow_delete_other %]<option value="0">Do not allow</option>[% ELSE %]<option value="0" selected="selected">Do not allow</option>[% END %]
231             [% IF allow_delete_other %]<option value="1" selected="selected">Allow</option>[% ELSE %]<option value="1">Allow</option>[% END %]
232         </select>
233         &nbsp;<span>anyone to remove other contributed entries.</span>
234     </li>
235 [% END %]
236 <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 %]
237
238 [% 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>
239
240 <div id="doc2" class="yui-t7">
241  <div id="bd">
242   <div id="yui-main">
243    <div class="yui-g">[% INCLUDE 'virtualshelves-toolbar.inc' %]
244    </div>
245 [% IF ( paramsloop ) %]
246 [% FOREACH paramsloo IN paramsloop %]
247 <div class="yui-ge">
248     <div class="yui-u first">
249         [% IF ( paramsloo.already ) %]<div class="dialog alert">A List named [% paramsloo.already %] already exists!</div>[% END %]
250                 [% IF ( paramsloo.status ) %]<div class="dialog alert">[% paramsloo.string %]</div>[% END %]
251                 [% IF ( paramsloo.nobarcode ) %]<div class="dialog alert">ERROR: No barcode given.</div>[% END %] 
252                 [% IF ( paramsloo.noshelfnumber ) %]<div class="dialog alert">ERROR: No shelfnumber given.</div>[% END %] 
253                 [% IF ( paramsloo.need_confirm ) %]
254                 <div class="dialog alert">The list <i>[% paramsloo.need_confirm %]</i> is not empty.
255                         <br />It has <b>[% paramsloo.count %]</b> entries.
256                         <br />Use the "Confirm" button below to confirm deletion.
257                 </div>
258                 [% END %]
259                 [% IF ( paramsloo.nopermission ) %]
260                 <div class="dialog alert">ERROR: You do not have adequate permission for that action on list [% paramsloo.nopermission %].</div>
261                 [% END %]
262                 [% IF ( paramsloo.failgetitem ) %]
263                 <div class="dialog alert">ERROR: No item found with barcode [% paramsloo.failgetitem %].</div>
264                 [% END %] 
265                 [% IF ( paramsloo.duplicatebiblio ) %]
266                 <div class="dialog alert">A record matching barcode <b>[% paramsloo.duplicatebiblio %]</b> has already been added.</div>
267                 [% END %]
268                 [% IF ( paramsloo.nothingdeleted) %]
269                       <div class="dialog message">Warning: You could not delete any selected items from this shelf.</div>
270                 [% END %]
271                 [% IF ( paramsloo.somedeleted) %]
272                       <div class="dialog message">Warning: You could not delete all selected items from this shelf.</div>
273                 [% END %]
274                 [% IF ( paramsloo.modifyfailure) %]
275                       <div class="dialog message">ERROR: List could not be modified.</div>
276                 [% END %]
277         </div>
278 </div>
279 [% END %]
280 [% END %] 
281
282 [% IF ( viewshelf ) %]
283    <div class="yui-g">
284     [% IF ( itemsloop ) %]
285
286     <h3>Contents of <i>[% shelfname | html %]</i></h3>
287     <div class="pages">[% pagination_bar %]</div>
288     <form action="/cgi-bin/koha/virtualshelves/shelves.pl" id="listform" method="post" class="checkboxed">
289         <input type="hidden" name="viewshelf" value="[% shelfnumber %]" />
290         <input type="hidden" name="modifyshelfcontents" value="1" />
291
292 [% IF direction == 'asc' %]
293     [% SET new_direction = 'desc' %]
294 [% ELSE %]
295     [% SET direction = 'desc' %]
296     [% SET new_direction = 'asc' %]
297 [% END %]
298
299 <div id="searchheader">
300     [% IF ( itemsloop ) %]
301         <div id="selection_ops"><span class="checkall"></span> |
302         <span class="clearall"></span>
303
304         <span class="addto">| </span>
305         &nbsp;
306         [% IF ( CAN_user_reserveforothers && DisplayMultiPlaceHold ) %]
307             <div class="btn-group"><button class="btn btn-mini placehold"><i class="icon-hold"></i> Place hold</button></div>
308         [% END %]
309         [% IF ( allowremovingitems ) %]
310             <div class="btn-group"><button type="submit" class="btn btn-mini list-remove"><i class="icon-remove-sign"></i> Remove selected</button></div>
311         [% END %]
312         [% 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 %]
313         </div>
314     [% END %]
315 </div>
316
317     <table id="searchresults">
318             <tr>
319                 [% IF ( itemsloop ) %]<th class="checkall">&nbsp;</th>[% END %]
320
321                 [% UNLESS ( item_level_itypes ) %]<th>Item type</th>[% END %]
322                 <th>
323                     <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>
324                     [% IF sort == 'title' %]
325                         <img src="[% interface %]/[% theme %]/img/[% direction %].gif" alt="[% direction %] sort" />
326                     [% ELSE %]
327                         <img src="[% interface %]/[% theme %]/img/ascdesc.gif" alt="" />
328                     [% END %]
329                 </th>
330                 <th>
331                     <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>
332                    [% IF sort == 'author' %]
333                         <img src="[% interface %]/[% theme %]/img/[% direction %].gif" alt="[% direction %] sort" />
334                    [% ELSE %]
335                        <img src="[% interface %]/[% theme %]/img/ascdesc.gif" alt="" />
336                    [% END %]
337                  </th>
338                 <th>Date added</th>
339                 <th>
340                     <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>
341                    [% IF sort == 'itemcallnumber' %]
342                         <img src="[% interface %]/[% theme %]/img/[% direction %].gif" alt="[% direction %] sort" />
343                    [% ELSE %]
344                        <img src="[% interface %]/[% theme %]/img/ascdesc.gif" alt="" />
345                    [% END %]
346                  </th>
347             </tr>
348                 [% FOREACH itemsloo IN itemsloop %]
349                         [% UNLESS ( loop.odd ) %]
350                         <tr class="highlight">
351                         [% ELSE %]
352                         <tr>
353                         [% END %]
354                         [% IF ( itemsloop ) %]
355                         <td>
356                                 [% IF ( itemsloo.confirm ) %]
357                                 <input type="hidden"   name="CONFIRM-[% itemsloo.confirm %]" />
358                                 <input type="checkbox" class="selection" value="[% itemsloo.biblionumber %]" name="REM-[% itemsloo.biblionumber %]" checked />
359                                 [% ELSE %]
360                                 <input type="checkbox" class="selection" value="[% itemsloo.biblionumber %]" name="REM-[% itemsloo.biblionumber %]" />
361                                 [% END %]
362                         </td>
363                         [% END %]
364                         [% UNLESS ( item_level_itypes ) %]<td>
365                 [% UNLESS ( noItemTypeImages || !itemsloo.imageurl ) %]<img src="[% itemsloo.imageurl %]" alt="[% itemsloo.description %]" title="[% itemsloo.description %]" />[% END %][% itemsloo.description %]
366                         </td>[% END %]
367                         <td>
368                 [% IF ( itemsloo.XSLTBloc ) %]
369                     [% itemsloo.XSLTBloc %]
370                 [% ELSE %]
371                     [% INCLUDE 'biblio-default-view.inc' biblionumber = itemsloo.biblionumber %]
372                     [% itemsloo.title |html %][% FOREACH subtitl IN itemsloo.subtitle %] [% subtitl.subfield %][% END %]</a>
373                 [% END %]
374                     <p class="hold">
375                         [% IF ( itemsloo.notforloan ) %]
376                             <span class="noholdstext">No holds allowed</span>
377                         [% ELSE %]
378                             [% IF ( itemsloo.ITEM_RESULTS.size ) %]
379                                 <a id="reserve_[% itemsloo.biblionumber %]" href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% itemsloo.biblionumber %]">Holds</a>
380                                 [% 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 %]
381                             [% ELSE %]
382                                 <span class="noholdstext">No holds allowed</span>
383                             [% END %]
384                         [% END %]
385                         [% IF ( CAN_user_editcatalogue_edit_catalogue ) %]
386                             | <a href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=[% itemsloo.biblionumber %]">Edit record</a>
387                         [% END %]
388                         [% IF ( CAN_user_editcatalogue_edit_items ) %]
389                             | <a href="/cgi-bin/koha/cataloguing/additem.pl?biblionumber=[% itemsloo.biblionumber %]">Edit items</a>
390                         [% END %]
391                     </p>
392                         </td>
393                         <td>[% itemsloo.author %]</td>
394                         <td>[% itemsloo.dateadded %]</td>
395                         <td>
396                 <ul>
397                 [% FOREACH result IN itemsloo.ITEM_RESULTS %]
398                     <li>[% result.holdingbranch %] [% IF ( result.location_intranet ) %] ([% result.location_intranet %]) [% END %]
399                         [% IF ( result.itemcallnumber ) %]
400                             [<a href="/cgi-bin/koha/catalogue/search.pl?idx=callnum&amp;q=[% result.itemcallnumber |url %]">[% result.itemcallnumber %]</a>]
401                         [% END %]
402                     </li>
403                 [% END %]
404                 </ul>
405             </td>
406                         </tr>
407                 [% END %]<!-- /itemsloop -->
408     </table>
409     <div class="pages">[% pagination_bar %]</div>
410 </form>
411
412         [% END %]
413    </div>
414 [% END %]<!-- /viewshelf -->
415
416 [% IF ( allowaddingitem ) %]
417 <div class="yui-g">
418 <form action="/cgi-bin/koha/virtualshelves/shelves.pl" method="post">
419  <fieldset class="brief">
420     <legend>Add an item to <i>[% shelfname | html %]</i></legend>
421         <ol>
422             <li>
423                 <label for="addbarcode">Barcode:</label>
424                 <input name="addbarcode" type="text" id="addbarcode" size="14" />
425                 <input type="hidden" name="viewshelf" value="[% shelfnumber %]" />
426                 <input type="hidden" name="modifyshelfcontents" value="1" />
427                 <input type="submit" value="Add" />
428             </li>
429         </ol>
430  </fieldset>
431 </form>
432 </div>
433 [% END %]<!-- /allowaddingitem -->
434
435 [% IF ( debug ) %]
436   [% IF ( edit ) %]<div>Edit is on ([% shelfname | html %])</div>[% END %]
437   [% IF ( seflag ) %]<div>seflag is on ([% seflag %])</div>[% END %]
438 [% END %]
439
440 [% IF ( seflag ) %]
441 <div class="yui-ge">
442     <div class="yui-u first">
443     <form method="post" action="/cgi-bin/koha/virtualshelves/shelves.pl">
444         <fieldset class="rows">
445
446     [% IF ( shelves ) %]
447         <input type="hidden" name="shelves" value="1" />
448         <legend>Create a new list</legend>
449         <ol>
450         <li><label class="required" for="addshelf">List name:</label><input id="addshelf" type="text" name="addshelf" size="25" /></li>
451         <li><span class="label">Owner: </span><input type="hidden" name="owner" id="owner" value="[% loggedinuser %]" />[% loggedinusername %]</li>
452         <li><label for="sortfield" >Sort this list by: </label>
453         <select name="sortfield" id="sortfield">
454             <option value="title">Title</option>
455             <option value="author">Author</option>
456             <option value="copyrightdate">Copyrightdate</option>
457             <option value="itemcallnumber">Call number</option>
458         </select></li>
459         <li><label for="category">Category: </label>
460             <select name="category" id="category">
461                   <option value="1">Private</option>
462                   <option value="2">Public</option>
463                      </select></li>
464             [% INCLUDE list_permissions %]
465         </ol>
466     [% END %]
467
468     [% IF ( edit ) %]
469                 <input type="hidden" name="op" value="modifsave" />
470         <input type="hidden" name="display" value="[% display %]" />
471         [% IF ( showprivateshelves ) %]<input type="hidden" name="display" value="privateshelves" />[% END %]
472                 <input type="hidden" name="shelfnumber" value="[% shelfnumber %]" />
473         <legend>Edit list <i>[% shelfname | html %]</i></legend>
474                 <ol>
475                 <li><label for="shelfname">Name: </label><input type="text" id="shelfname" name="shelfname" size="25" value="[% shelfname |html %]" /></li>
476                 <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>
477                 <li><label for="sortfield" >Sort this list by: </label>
478                 <select name="sortfield">
479         [% IF ( sortfield == "title" ) %]<option value="title" selected="selected">Title</option>[% ELSE %]<option value="title">Title</option>[% END %]
480         [% IF ( sortfield == "author" ) %]<option value="author" selected="selected">Author</option>[% ELSE %]<option value="author">Author</option>[% END %]
481         [% IF ( sortfield == "copyrightdate" ) %]<option value="copyrightdate" selected="selected">Copyrightdate</option>[% ELSE %]<option value="copyrightdate">Copyrightdate</option>[% END %]
482         [% IF ( sortfield == "itemcallnumber" ) %]<option value="itemcallnumber" selected="selected">Call number</option>[% ELSE %]<option value="itemcallnumber">Call number</option>[% END %]
483                 </select></li>
484                 <li><label for="category">Category: </label>
485                         <select id="category" name="category">
486                         [% IF ( category1 ) %]
487                                 <option value="1" selected="selected">Private</option>
488                         [% ELSE %]
489                                 <option value="1">Private</option>
490                         [% END %]
491                         [% IF ( category2 ) %]
492                                 <option value="2" selected="selected">Public</option>
493                         [% ELSE %]
494                                 <option value="2">Public</option>
495                         [% END %]
496                        </select></li>
497             [% INCLUDE list_permissions %]
498             </ol>
499         [% END %]
500
501                 </fieldset>
502                 <fieldset class="action"><input type="submit" onclick="Check(this.form); return false;" value="Save" class="submit" />
503         [% IF ( showprivateshelves ) %]
504             <a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves" class="cancel">Cancel</a>
505         [% ELSE %]
506             [% IF ( display == "viewshelf" ) %]
507                <a href="/cgi-bin/koha/virtualshelves/shelves.pl?viewshelf=[% shelfnumber %]" class="cancel">Cancel</a>
508             [% ELSE %]
509                 <a href="/cgi-bin/koha/virtualshelves/shelves.pl" class="cancel">Cancel</a>
510             [% END %]
511         [% END %]
512     </fieldset>
513     </form>
514     </div>
515     <div class="yui-u">
516         <div class="help"><ul>
517             <li>A <b>Private</b> list is managed by you and can be seen only by you.</li>
518             <li> A <b>Public</b> list can be seen by everybody, but managed only by you.</li>
519             <br/>
520             <li>The owner of a list is always allowed to add entries, but needs permission to remove.</li>
521         </ul>
522         </div>
523     </div>
524 </div>
525 [% END %]<!-- /seflag -->
526
527 [% UNLESS ( vseflag ) %]
528         <h2>Lists</h2>
529         <div class="statictabs">
530         <ul>
531         [% IF ( showprivateshelves ) %]
532             <li id="privateshelves_tab" class="active"><a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves">Your lists</a></li>
533         [% ELSE %]
534             <li id="privateshelves_tab" class=""><a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves">Your lists</a></li>
535         [% END %]
536         [% IF ( showpublicshelves ) %]
537             <li id="publicshelves_tab" class="active"><a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=publicshelves">Public lists</a></li>
538         [% ELSE %]
539             <li id="publicshelves_tab" class=""><a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=publicshelves">Public lists</a></li>
540         [% END %]
541         </ul>
542         [% IF ( showprivateshelves ) %]
543         <div id="privateshelves" class="tabs-container" style="display:block;">
544                 [% ELSE %]
545         <div id="privateshelves" class="tabs-container" style="display:none;">
546                 [% END %]
547             [% IF ( shelveslooppriv ) %]
548                         <div class="pages">[% pagination_bar %]</div>
549                         <table>
550                         <tr><th>List Name</th><th>Contents</th><th>Sort by</th><th>Type</th><th>Options</th></tr>
551                 [% FOREACH shelveslooppri IN shelveslooppriv %]
552                     [% IF ( shelveslooppri.toggle ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
553         <td><a href="shelves.pl?[% IF ( shelveslooppri.showprivateshelves ) %]display=privateshelves&amp;[% END %]viewshelf=[% shelveslooppri.shelf %]&amp;shelfoff=[% shelfoff %]">[% shelveslooppri.shelfname |html %]</a></td>
554         <td>[% shelveslooppri.count %] item(s)</td>
555         <td>[% IF ( shelveslooppri.sortfield == "author" ) %]Author[% ELSIF ( shelveslooppri.sortfield == "copyrightdate" ) %]Year[% ELSIF (shelveslooppri.sortfield == "itemcallnumber") %]Call number[% ELSE %]Title[% END %]</td>
556         <td>[% IF ( shelveslooppri.viewcategory1 ) %]Private[% END %]
557                         [% IF ( shelveslooppri.viewcategory2 ) %]Public[% END %]
558                 </td>
559         <td>
560             [% IF ( shelveslooppri.mine ) %]
561                                 <form action="merge.pl" method="get">
562                                         <input type="hidden" name="shelf" value="[% shelveslooppri.shelf %]" />
563                                 </form>
564                                 <form action="shelves.pl" method="get">
565                                         <input type="hidden" name="shelfnumber" value="[% shelveslooppri.shelf %]" />
566                                         <input type="hidden" name="op" value="modif" />
567                     <input type="hidden" name="display" value="privateshelves" />
568                                         <input type="submit" class="editshelf" value="Edit" />
569                                 </form>
570                                 <form action="shelves.pl" method="post">
571                                     <input type="hidden" name="shelfoff" value="[% shelfoff %]" />
572                                         <input type="hidden" name="shelves" value="1" />
573                     <input type="hidden" name="display" value="privateshelves" />
574                                         <input type="hidden" name="DEL-[% shelveslooppri.shelf %]" value="1" />
575                                         [% IF ( shelveslooppri.confirm ) %]
576                                         <input type="hidden" name="CONFIRM-[% shelveslooppri.confirm %]" value="1" />
577                                         <input type="submit" class="approve" value="Confirm" />
578                                         [% ELSE %]
579                     <input type="submit" class="deleteshelf" onclick="return confirmDelete(MSG_CONFIRM_DELETE_LIST);" value="Delete" />
580                                         [% END %]
581                                 </form>
582                         [% ELSE %]
583                                 None
584                         [% END %]
585                 </td>
586                 </tr>
587                 [% END %]
588         </table>
589             [% ELSE %]
590             <p>No private lists.</p>
591             [% END %]<!-- /shelveslooppriv -->
592                 </div><!-- /privateshelves -->
593
594         [% IF ( showpublicshelves ) %]
595         <div id="publicshelves" class="tabs-container" style="display:block;">
596                 [% ELSE %]
597         <div id="publicshelves" class="tabs-container" style="display:none;">
598                 [% END %]
599         [% IF ( shelvesloop ) %]
600                 <div class="pages">[% pagination_bar %]</div>
601         <table>
602         <tr><th>List Name</th><th>Created by</th><th>Contents</th><th>Sort By</th><th>Type</th><th>Options</th></tr>
603             [% FOREACH shelvesloo IN shelvesloop %]
604                 [% IF ( shelvesloo.toggle ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
605                 <td><a href="shelves.pl?viewshelf=[% shelvesloo.shelf %]">[% shelvesloo.shelfname |html %]</a></td>
606         <td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% shelvesloo.owner %]">[% shelvesloo.ownername %]</td>
607                 <td>[% shelvesloo.count %] item(s)</td>
608         <td>[% IF ( shelvesloo.sortfield == "author" ) %]Author[% ELSIF ( shelvesloo.sortfield == "copyrightdate" ) %]Year[% ELSIF (shelvesloo.sortfield == "itemcallnumber") %]Call number[% ELSE %]Title[% END %]</td>
609         <td>[% IF ( shelvesloo.viewcategory1 ) %]Private[% END %]
610                         [% IF ( shelvesloo.viewcategory2 ) %]Public[% END %]
611                 </td>
612         <td>
613             [% IF ( shelvesloo.manageshelf ) %]
614                                 <form action="shelves.pl" method="get">
615                                         <input type="hidden" name="shelfnumber" value="[% shelvesloo.shelf %]" />
616                                         <input type="hidden" name="op" value="modif" />
617                                         <input type="submit" class="editshelf" value="Edit" />
618                                 </form>
619                                 <form action="shelves.pl" method="post">
620                                         <input type="hidden" name="shelfoff" value="[% shelfoff %]" />
621                                         <input type="hidden" name="shelves" value="1" />
622                                         <input type="hidden" name="DEL-[% shelvesloo.shelf %]" value="1" />
623                                         [% IF ( shelvesloo.confirm ) %]
624                                         <input type="hidden" name="CONFIRM-[% shelvesloo.confirm %]" value="1" />
625                                         <input type="submit" class="approve" value="Confirm" />
626                                         [% ELSE %]
627                     <input type="submit" class="deleteshelf" onclick="return confirmDelete(MSG_CONFIRM_DELETE_LIST);" value="Delete" />
628                                         [% END %]
629                                 </form>
630                         [% ELSE %]
631                                 None
632                         [% END %]
633                 </td>
634                 </tr>
635             [% END %]
636         </table>
637         [% ELSE %]
638             [% IF ( showpublicshelves ) %]<p>No public lists.</p>[% END %]
639         [% END %]<!-- /shelvesloop -->
640         </div><!-- /publicshelves -->
641                 </div>
642 [% END %]
643
644 <form id="hold_form" method="get" action="/cgi-bin/koha/reserve/request.pl">
645     <!-- Value will be set here by placeHold() -->
646     <input id="hold_form_biblios" type="hidden" name="biblionumbers" value="" />
647     <input type="hidden" name="multi_hold" value="1"/>
648 </form>
649
650 </div>
651 </div>
652 [% INCLUDE 'intranet-bottom.inc' %]