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