5 [% INCLUDE 'doc-head-open.inc' %]
6 <title>Koha › [% IF op == 'view' %]Lists › Contents of [% shelf.shelfname | html %][% ELSE %]Lists[% END %][% IF op == 'add_form' %] › Create new list[% END %][% IF op == 'edit_form' %] › Edit list [% shelf.shelfname | html %][% END %]</title>
7 [% INCLUDE 'doc-head-close.inc' %]
8 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
9 [% INCLUDE 'datatables.inc' %]
10 <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.dataTables.columnFilter.js"></script>
13 <script type="text/javascript">
14 $( document ).ready(function() {
16 setTimeout('window.close()', 1);
22 <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
23 <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.fixFloat.js"></script>
25 <script type="text/javascript">
28 var MSG_NO_ITEM_SELECTED = _("Nothing is selected.");
29 var MSG_REMOVE_FROM_LIST = _("Are you sure you want to remove these items from the list?");
30 var MSG_CONFIRM_DELETE_LIST = _("Are you sure you want to remove this list?");
33 $(document).ready(function(){
34 [% IF category == PUBLIC %]
35 var type = [% PUBLIC %];
37 var type = [% PRIVATE %];
39 var dtListResults = $("#listresultst").dataTable($.extend(true, {}, dataTablesDefaults, {
41 'sAjaxSource': "/cgi-bin/koha/svc/virtualshelves/search",
42 'fnServerData': function(sSource, aoData, fnCallback) {
48 'value': $("#searchshelfname_filter").val(),
51 'value': $("#searchowner_filter").val(),
54 'value': $("#searchsortby_filter").val(),
56 'name': 'template_path',
57 'value': 'virtualshelves/tables/shelves_results.tt',
64 'success': function(json){
70 { 'mDataProp': 'dt_type' },
71 { 'mDataProp': 'dt_shelfname' },
72 { 'mDataProp': 'dt_count' },
73 { 'mDataProp': 'dt_owner' },
74 { 'mDataProp': 'dt_sortby' },
75 { 'mDataProp': 'dt_created_on' },
76 { 'mDataProp': 'dt_modification_time' },
77 { 'mDataProp': 'dt_action', 'bSortable': false }
80 { "bVisible": false, "aTargets": [ 'NoVisible' ] }
83 'sPaginationType': 'full_numbers',
89 dtListResults.fnAddFilters("filter", 750);
91 var tabs = $("#tabs").tabs({
92 [% IF category == PUBLIC %]
97 activate: function(e, ui) {
98 var active = tabs.tabs("option", "active" );
100 type = [% PRIVATE %];
101 dtListResults.fnDraw();
102 } else if ( active == 1 ) {
104 dtListResults.fnDraw();
111 [% IF op == 'view' %]
112 $(document).ready(function(){
113 [% IF ( itemsloop ) %]$('#searchheader').fixFloat();[% END %]
114 $("span.clearall").html("<a id=\"CheckNone\" href=\"/cgi-bin/koha/shelves.pl\">"+_("Clear all")+"<\/a>");
115 $("span.checkall").html("<a id=\"CheckAll\" href=\"/cgi-bin/koha/shelves.pl\">"+_("Select all")+"<\/a>");
116 $("#CheckAll").click(function(){
117 $(".checkboxed").checkCheckboxes();
120 $("#CheckNone").click(function(){
121 $(".checkboxed").unCheckCheckboxes();
124 $(".placehold").on("click",function(e){
128 $(".addtocart").show();
129 var param1 = "| <label for=\"addto\">"+_("Add to:")+"<\/label><select name=\"addto\" id=\"addto\"><option value=\"\"><\/option>";
130 [% IF ( intranetbookbag ) %]
131 param1 += "<option value=\"addtocart\">"+_("Cart")+"<\/option>";
133 [% IF Koha.Preference('virtualshelves') %]
134 [% IF add_to_some_private_shelves.count %]
135 param1 += "<optgroup label=\""+_("Your lists:")+"\">";
136 [% SET number_of_private_shelves = 0 %]
137 [% FOREACH s IN add_to_some_private_shelves %]
138 [% IF shelfnumber != s.shelfnumber %]
139 param1 += "<option id=\"s[% s.shelfnumber %]\" value=\"addtolist\">[% s.shelfname |html %]<\/option>";
140 [% SET number_of_private_shelves = number_of_private_shelves + 1 %]
141 [% IF number_of_private_shelves == 10 %][% LAST %][% END %]
144 param1 += "<\/optgroup>";
146 [% IF add_to_some_public_shelves.count %]
147 param1 += "<optgroup label=\""+_("Public lists:")+"\">";
148 [% SET number_of_public_shelves = 0 %]
149 [% FOREACH s IN add_to_some_public_shelves %]
150 [% IF shelfnumber != s.shelfnumber %]
151 param1 += "<option id=\"s[% s.shelfnumber %]\" value=\"addtolist\">[% s.shelfname |html %]<\/option>";
152 [% SET number_of_public_shelves = number_of_public_shelves + 1 %]
153 [% IF number_of_public_shelves == 10 %][% LAST %][% END %]
156 param1 += "<\/optgroup>";
158 [% IF add_to_some_private_shelves.count > 10 or add_to_some_public_shelves.count > 10 %]
159 param1 += "<option value=\"morelists\">[ "+_("More lists")+" ]<\/option>";
161 param1 +="<option value=\"newlist\">"+_("[ New list ]")+"<\/option>"
163 param1 += "<\/select> <button id=\"cartsubmit\" type=\"submit\" class=\"btn btn-mini\">"+_("Save")+"</button>";
164 $("span.addto").html(param1);
165 $("#cartsubmit").on("click",function(e){
169 $("#addto").change(function(){
172 $(".addto").find("input:submit").click(function(e){
176 $("#selection_ops").show();
177 $(".merge-items").on("click",function(e){
181 $("#listform").on("submit",function(e){
184 $(".list-remove").on("click",function(e){
185 if($(".selection").filter(":checked").length > 0){
186 return confirm(MSG_REMOVE_FROM_LIST);
188 alert(MSG_NO_ITEM_SELECTED);
196 * This function checks if the adequate number of records are checked for merging
198 function MergeItems() {
199 var checkboxes = $("input:checkbox:checked");
200 if (checkboxes.length > 0) {
202 $(checkboxes).each(function() {
203 params.push('biblionumber=' + $(this).val());
205 var url = '/cgi-bin/koha/cataloguing/merge.pl?' + params.join('&');
208 alert(_("You must select at least one record"));
214 * This function checks all checkboxes if all are empty,
215 * or unchecks all if any already checked.
218 var checkboxes = document.getElementsByTagName('input');
219 var nbCheckbox = checkboxes.length;
220 var check = areAllChecked();
221 for(var i=0;i<nbCheckbox;i++){
222 if(checkboxes[i].getAttribute('type') == "checkbox" ){
223 checkboxes[i].checked = (check) ? 0 : 1;
228 * This function returns true if ALL checkboxes are checked
230 function areAllChecked(){
231 var checkboxes = document.getElementsByTagName('input');
232 var nbCheckbox = checkboxes.length;
233 for(var i=0;i<nbCheckbox;i++){
234 if(checkboxes[i].getAttribute('type') == "checkbox" ){
235 if(checkboxes[i].checked == 0){
243 function placeHold () {
244 var checkedItems = $(".selection:checked");
245 if ($(checkedItems).size() == 0) {
246 alert(MSG_NO_ITEM_SELECTED);
250 $(checkedItems).each(function() {
251 bibs += $(this).val() + "/";
253 $("#hold_form_biblios").val(bibs);
254 $("#hold_form").submit();
259 var checkboxes = $("#searchresults").find(":checkbox");
260 var vshelf = vShelfAdd(checkboxes);
261 if($("#addto").find("option:selected").attr("value") == "addtolist"){
262 var shelfnumber = $("#addto").find("option:selected").attr("id").replace("s","");
264 openWindow('/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?shelfnumber='+shelfnumber+'&confirm=1&' + vshelf,'popup',500,500);
267 } else if($("#addto").find("option:selected").attr("value") == "newlist"){
269 openWindow('/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?newshelf=1&' + vshelf,'popup',500,500);
272 } else if($("#addto").find("option:selected").attr("value") == "morelists"){
274 openWindow('/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?' + vshelf,'popup',500,500);
278 if($("#addto").find("option:selected").attr("value") == "addtocart"){
279 addMultiple(checkboxes);
286 <body id="lists_shelves" class="lists">
287 [% INCLUDE 'header.inc' %]
288 [% INCLUDE 'cat-search.inc' %]
290 <div id="breadcrumbs">
291 <a href="/cgi-bin/koha/mainpage.pl">Home</a> ›
292 [% IF op != 'list' %]
293 <a href="/cgi-bin/koha/virtualshelves/shelves.pl">Lists</a>
297 [% IF shelf AND shelf.category == PRIVATE %] ›
298 [% IF op == 'view' OR op == 'edit_form' %]
299 <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&category=[% PRIVATE %]">Your lists</a>
303 [% ELSIF shelf AND shelf.category == PUBLIC %] ›
304 [% IF op == 'view' %]
305 <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&category=[% PUBLIC %]">Public lists</a>
311 [% IF op == 'view' %]› Contents of <i>[% shelf.shelfname | html %]</i>[% END %][% IF op == 'add_form' %] › Create new list[% END %][% IF op == 'edit_form' %] › Edit list <i>[% shelf.shelfname | html %]</i>[% END %]</div>
313 <div id="doc3" class="yui-t2">
318 <div class="yui-g">[% INCLUDE 'virtualshelves-toolbar.inc' %]
321 [% FOR m IN messages %]
322 <div class="dialog [% m.type %]">
324 [% CASE 'error_on_update' %]
325 An error occurred when updating this list. Perhaps the value already exists.
326 [% CASE 'error_on_insert' %]
327 An error occurred when inserting this list. Perhaps the name already exists.
328 [% CASE 'error_on_delete' %]
329 An error occurred when deleting this list. Check the logs.
330 [% CASE 'error_on_add_biblio' %]
331 The item has not been added to the list. Please check it's not in this list yet.
332 [% CASE 'success_on_update' %]
333 List updated with success.
334 [% CASE 'success_on_insert' %]
335 List inserted with success.
336 [% CASE 'success_on_delete' %]
337 List deleted with success.
338 [% CASE 'success_on_add_biblio' %]
339 The item has been added to the list.
340 [% CASE 'success_on_remove_biblios' %]
341 The item has been removed from the list.
342 [% CASE 'does_not_exist' %]
343 This list does not exist.
344 [% CASE 'item_does_not_exist' %]
345 This item does not exist.
346 [% CASE 'unauthorized_on_view' %]
347 You do not have permission to view this list.
348 [% CASE 'unauthorized_on_update' %]
349 You do not have permission to update this list.
350 [% CASE 'unauthorized_on_delete' %]
351 You do not have permission to delete this list.
352 [% CASE 'unauthorized_on_add_biblio' %]
353 You do not have permission to add a biblio to this list.
354 [% CASE 'no_biblio_removed' %]
355 No biblio has been removed.
356 [% CASE 'Koha::Exceptions::Virtualshelves::DuplicateObject' %]
357 An error occurred when inserting this list. The name already [% shelfname %] exists.
358 [% CASE 'Koha::Exceptions::Virtualshelves::UseDbAdminAccount' %]
359 List could not be created. (Do not use the database administrator account.).
360 [% CASE 'DBIx::Class::Exception' %]
368 [% IF op == 'view' %]
372 <h3>Contents of <i>[% shelf.shelfname | html %]</i></h3>
373 <div class="pages">[% pagination_bar %]</div>
374 <form action="/cgi-bin/koha/virtualshelves/shelves.pl" id="listform" method="post" class="checkboxed">
375 <input type="hidden" name="op" value="remove_biblios" />
376 <input type="hidden" name="referer" value="view" />
377 <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber %]" />
379 [% IF direction == 'asc' %]
380 [% SET new_direction = 'desc' %]
382 [% SET direction = 'desc' %]
383 [% SET new_direction = 'asc' %]
386 <div id="searchheader" class="noprint">
388 <div id="selection_ops"><span class="checkall"></span> |
389 <span class="clearall"></span>
391 <span class="addto">| </span>
393 [% IF CAN_user_reserveforothers && Koha.Preference('DisplayMultiPlaceHold') %]
394 <div class="btn-group"><button class="btn btn-mini placehold"><i class="fa fa-sticky-note-o"></i> Place hold</button></div>
396 [% IF can_remove_biblios %]
397 <div class="btn-group"><button type="submit" class="btn btn-mini list-remove"><i class="fa fa-times-circle"></i> Remove selected</button></div>
399 [% IF ( CAN_user_editcatalogue_edit_catalogue ) %]<div class="btn-group"><button type="submit" class="btn btn-mini merge-items"><i class="fa fa-compress"></i> Merge selected</button></div>[% END %]
404 <table id="searchresults">
406 [% IF ( itemsloop ) %]<th class="checkall"> </th>[% END %]
408 [% UNLESS ( item_level_itypes ) %]<th>Item type</th>[% END %]
410 <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&shelfnumber=[% shelf.shelfnumber %]&sortfield=title&direction=[% IF sortfield != 'title' %]asc[% ELSE %][% new_direction %][% END %]">Title</a>
411 [% IF sortfield == 'title' %]
412 <img src="[% interface %]/[% theme %]/img/[% direction %].gif" alt="[% direction %] sort" />
414 <img src="[% interface %]/[% theme %]/img/ascdesc.gif" alt="" />
418 <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&shelfnumber=[% shelf.shelfnumber %]&sortfield=author&direction=[% IF sortfield != 'author' %]asc[% ELSE %][% new_direction %][% END %]">Author</a>
419 [% IF sortfield == 'author' %]
420 <img src="[% interface %]/[% theme %]/img/[% direction %].gif" alt="[% direction %] sort" />
422 <img src="[% interface %]/[% theme %]/img/ascdesc.gif" alt="" />
427 <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&shelfnumber=[% shelf.shelfnumber %]&sortfield=itemcallnumber&direction=[% IF sortfield != 'itemcallnumber' %]asc[% ELSE %][% new_direction %][% END %]">Call number</a>
428 [% IF sortfield == 'itemcallnumber' %]
429 <img src="[% interface %]/[% theme %]/img/[% direction %].gif" alt="[% direction %] sort" />
431 <img src="[% interface %]/[% theme %]/img/ascdesc.gif" alt="" />
435 [% FOREACH itemsloo IN itemsloop %]
436 [% UNLESS ( loop.odd ) %]
437 <tr class="highlight">
443 <input type="checkbox" class="selection" value="[% itemsloo.biblionumber %]" name="biblionumber" />
446 [% UNLESS ( item_level_itypes ) %]<td>
447 [% UNLESS ( noItemTypeImages || !itemsloo.imageurl ) %]<img src="[% itemsloo.imageurl %]" alt="[% itemsloo.description %]" title="[% itemsloo.description %]" />[% END %][% itemsloo.description %]
450 [% IF ( itemsloo.XSLTBloc ) %]
451 [% itemsloo.XSLTBloc %]
453 [% INCLUDE 'biblio-default-view.inc' biblionumber = itemsloo.biblionumber %]
454 [% itemsloo.title |html %][% FOREACH subtitl IN itemsloo.subtitle %] [% subtitl.subfield %][% END %]</a>
457 [% IF ( itemsloo.notforloan ) %]
458 <span class="noholdstext">No holds allowed</span>
460 [% IF ( itemsloo.ITEM_RESULTS.size ) %]
461 <a id="reserve_[% itemsloo.biblionumber %]" href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% itemsloo.biblionumber %]">Holds</a>
462 [% IF ( holdfor ) %] <span class="holdforlink">| <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% itemsloo.biblionumber %]&findborrower=[% holdfor_cardnumber %]">Place hold for [% holdfor_firstname %] [% holdfor_surname %] ([% holdfor_cardnumber %])</a></span>[% END %]
464 <span class="noholdstext">No holds allowed</span>
467 [% IF ( CAN_user_editcatalogue_edit_catalogue ) %]
468 | <a href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=[% itemsloo.biblionumber %]">Edit record</a>
470 [% IF ( CAN_user_editcatalogue_edit_items ) %]
471 | <a href="/cgi-bin/koha/cataloguing/additem.pl?biblionumber=[% itemsloo.biblionumber %]">Edit items</a>
475 <td>[% itemsloo.author %]</td>
476 <td>[% itemsloo.dateadded | $KohaDates%]</td>
479 [% FOREACH result IN itemsloo.ITEM_RESULTS %]
480 <li>[% result.holdingbranch %] [% IF ( result.location_intranet ) %] ([% result.location_intranet %]) [% END %]
481 [% IF ( result.itemcallnumber ) %]
482 [<a href="/cgi-bin/koha/catalogue/search.pl?idx=callnum&q=%22[% result.itemcallnumber |uri %]%22">[% result.itemcallnumber %]</a>]
489 [% END %]<!-- /itemsloop -->
491 <div class="pages">[% pagination_bar %]</div>
498 [% IF can_add_biblios %]
500 <form action="/cgi-bin/koha/virtualshelves/shelves.pl" method="post">
501 <fieldset class="brief noprint">
502 <legend>Add an item to <i>[% shelfname | html %]</i></legend>
505 <label for="barcode">Barcode:</label>
506 <input name="barcode" type="text" id="barcode" size="14" />
507 <input type="hidden" name="op" value="add_biblio" />
508 <input type="hidden" name="referer" value="view" />
509 <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber %]" />
510 <input type="submit" value="Add" />
518 [% IF op == 'add_form' OR op == 'edit_form' %]
520 <div class="yui-u first">
521 <form method="post" action="/cgi-bin/koha/virtualshelves/shelves.pl" class="validated">
522 <fieldset class="rows">
524 [% IF op == 'add_form' %]
525 <legend>Create a new list</legend>
526 <input type="hidden" name="op" value="add" />
528 <legend>Edit list <i>[% shelf.shelfname | html %]</i></legend>
529 <input type="hidden" name="op" value="edit" />
531 <input type="hidden" name="referer" value="[% referer %]" />
532 <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber %]" />
535 <label for="shelfname" class="required">Name: </label><input type="text" id="shelfname" name="shelfname" size="25" value="[% shelf.shelfname |html %]" required="required" class="required" />
536 <span class="required">Required</span>
539 <span class="label">Owner: </span>
540 [% IF op == 'add_form' %]
541 <input type="hidden" name="owner" id="owner" value="[% loggedinusernumber %]" />[% loggedinusername %]</li>
544 <input type="hidden" id="owner" name="owner" value="[% owner.borrowernumber %]" />[% owner.firstname _ ' ' _ owner.surname %]
546 <input type="hidden" id="owner" name="owner" value="[% loggedinusernumber %]" />[% loggedinusername %]
550 <li><label for="sortfield" >Sort this list by: </label>
551 <select name="sortfield">
552 [% IF shelf.sortfield == "title" %]<option value="title" selected="selected">Title</option>[% ELSE %]<option value="title">Title</option>[% END %]
553 [% IF shelf.sortfield == "author" %]<option value="author" selected="selected">Author</option>[% ELSE %]<option value="author">Author</option>[% END %]
554 [% IF shelf.sortfield == "copyrightdate" %]<option value="copyrightdate" selected="selected">Copyrightdate</option>[% ELSE %]<option value="copyrightdate">Copyrightdate</option>[% END %]
555 [% IF shelf.sortfield == "itemcallnumber" %]<option value="itemcallnumber" selected="selected">Call number</option>[% ELSE %]<option value="itemcallnumber">Call number</option>[% END %]
557 <li><label for="category">Category: </label>
558 <select id="category" name="category">
559 [% IF shelf.category == PRIVATE %]
560 <option value="1" selected="selected">Private</option>
562 <option value="1">Private</option>
564 [% IF shelf.category == PUBLIC %]
565 <option value="2" selected="selected">Public</option>
567 <option value="2">Public</option>
572 <label for="allow_add">Permissions: </label>
573 <select name="allow_add" id="allow_add">
574 [% IF shelf.allow_add %]<option value="0">Do not allow</option>[% ELSE %]<option value="0" selected="selected">Do not allow</option>[% END %]
575 [% IF shelf.allow_add %]<option value="1" selected="selected">Allow</option>[% ELSE %]<option value="1">Allow</option>[% END %]
577 <span>anyone else to add entries.</span>
580 <label> </label>
581 <select name="allow_delete_own" id="allow_delete_own">
582 [% IF shelf and not shelf.allow_delete_own %]<option value="0" selected="selected">Do not allow</option>[% ELSE %]<option value="0">Do not allow</option>[% END %]
583 [% IF not shelf or shelf.allow_delete_own %]<option value="1" selected="selected">Allow</option>[% ELSE %]<option value="1">Allow</option>[% END %]
585 <span>anyone to remove his own contributed entries.</span>
588 <label> </label>
589 <select name="allow_delete_other" id="allow_delete_other">
590 [% IF shelf.allow_delete_other %]<option value="0">Do not allow</option>[% ELSE %]<option value="0" selected="selected">Do not allow</option>[% END %]
591 [% IF shelf.allow_delete_other %]<option value="1" selected="selected">Allow</option>[% ELSE %]<option value="1">Allow</option>[% END %]
593 <span>anyone to remove other contributed entries.</span>
598 <fieldset class="action">
599 <input type="submit" value="Save" class="submit" />
600 [% IF referer == 'view' %]
601 <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&shelfnumber=[% shelf.shelfnumber %]" class="cancel">Cancel</a>
603 [% IF category == PUBLIC %]
604 <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&category=[% PUBLIC %]" class="cancel">Cancel</a>
606 <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&category=[% PRIVATE %]" class="cancel">Cancel</a>
613 <div class="help"><ul>
614 <li><b>Private list:</b> Is managed by you and can be seen only by you.</li>
615 <li><b>Public list:</b> Can be seen by everybody, but managed only by you.</li>
622 [% IF op == 'list' %]
624 <div id="tabs" class="toptabs">
626 <li id="privateshelves_tab" class="active"><a href="#tab_content">Your lists</a></li>
627 <li id="publicshelves_tab" class="active"><a href="#tab_content">Public lists</a></li>
630 <div id="tab_content">
631 <table id="listresultst">
634 <th class="NoVisible">Type</th>
639 <th>Creation date</th>
640 <th>Modification date</th>
643 <tr class="filters_row">
645 <th><input class="filter text_filter" id="searchshelfname_filter" placeholder="List name"></th>
647 <th><input class="filter text_filter" id="searchowner_filter" placeholder="Owner"></th>
649 <select class="filter text_filter" id="searchsortby_filter">
650 <option value=""></option>
651 <option value="title">Title</option>
652 <option value="author">Author</option>
653 <option value="copyrightdate">Copyrightdate</option>
654 <option value="itemcallnumber">Call number</option>
668 <form id="hold_form" method="get" action="/cgi-bin/koha/reserve/request.pl">
669 <!-- Value will be set here by placeHold() -->
670 <input id="hold_form_biblios" type="hidden" name="biblionumbers" value="" />
671 <input type="hidden" name="multi_hold" value="1"/>
677 [% IF ( allowaddingitem ) %]
679 <form action="/cgi-bin/koha/virtualshelves/shelves.pl" method="post">
680 <fieldset class="brief">
681 <legend>Add an item</legend>
684 <label for="addbarcode">Barcode:</label>
685 <input name="addbarcode" type="text" id="addbarcode" class="focus" />
686 <input type="hidden" name="viewshelf" value="[% shelfnumber %]" />
687 <input type="hidden" name="modifyshelfcontents" value="1" />
690 <fieldset class="action">
691 <input type="submit" value="Add" />
696 [% END %]<!-- /allowaddingitem -->
699 [% INCLUDE 'intranet-bottom.inc' %]