Lines 1-5
Link Here
|
|
|
1 |
[% USE Koha %] |
2 |
[% USE KohaDates %] |
3 |
[% SET PRIVATE = 1 %] |
4 |
[% SET PUBLIC = 2 %] |
1 |
[% INCLUDE 'doc-head-open.inc' %] |
5 |
[% INCLUDE 'doc-head-open.inc' %] |
2 |
<title>Koha › [% IF ( viewshelf ) %]Lists › Contents of [% shelfname | html %][% ELSE %]Lists[% END %][% IF ( shelves ) %] › Create new list[% END %][% IF ( edit ) %] › Edit list [% shelfname | html %][% END %]</title> |
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> |
3 |
[% INCLUDE 'doc-head-close.inc' %] |
7 |
[% INCLUDE 'doc-head-close.inc' %] |
4 |
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> |
8 |
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> |
5 |
[% INCLUDE 'datatables.inc' %] |
9 |
[% INCLUDE 'datatables.inc' %] |
Lines 14-20
Link Here
|
14 |
</script> |
18 |
</script> |
15 |
[% END %] |
19 |
[% END %] |
16 |
|
20 |
|
17 |
[% IF ( viewshelf ) %] |
21 |
[% IF op == 'view' %] |
18 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script> |
22 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script> |
19 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.fixFloat.js"></script> |
23 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.fixFloat.js"></script> |
20 |
[% END %] |
24 |
[% END %] |
Lines 27-33
var MSG_CONFIRM_DELETE_LIST = _("Are you sure you want to remove this list?");
Link Here
|
27 |
|
31 |
|
28 |
[% IF op == 'list' %] |
32 |
[% IF op == 'list' %] |
29 |
$(document).ready(function(){ |
33 |
$(document).ready(function(){ |
30 |
var type = 1; |
34 |
[% IF category == PUBLIC %] |
|
|
35 |
var type = [% PUBLIC %]; |
36 |
[% ELSE %] |
37 |
var type = [% PRIVATE %]; |
38 |
[% END %] |
31 |
var dtListResults = $("#listresultst").dataTable($.extend(true, {}, dataTablesDefaults, { |
39 |
var dtListResults = $("#listresultst").dataTable($.extend(true, {}, dataTablesDefaults, { |
32 |
'bServerSide': true, |
40 |
'bServerSide': true, |
33 |
'sAjaxSource': "/cgi-bin/koha/svc/virtualshelves/search", |
41 |
'sAjaxSource': "/cgi-bin/koha/svc/virtualshelves/search", |
Lines 81-93
$(document).ready(function(){
Link Here
|
81 |
dtListResults.fnAddFilters("filter", 750); |
89 |
dtListResults.fnAddFilters("filter", 750); |
82 |
|
90 |
|
83 |
var tabs = $("#tabs").tabs({ |
91 |
var tabs = $("#tabs").tabs({ |
|
|
92 |
[% IF category == PUBLIC %] |
93 |
active: 1, |
94 |
[% ELSE %] |
95 |
active: 0, |
96 |
[% END %] |
84 |
activate: function(e, ui) { |
97 |
activate: function(e, ui) { |
85 |
var active = tabs.tabs("option", "active" ); |
98 |
var active = tabs.tabs("option", "active" ); |
86 |
if ( active == 0 ) { |
99 |
if ( active == 0 ) { |
87 |
type = 1; // private |
100 |
type = [% PRIVATE %]; |
88 |
dtListResults.fnDraw(); |
101 |
dtListResults.fnDraw(); |
89 |
} else if ( active == 1 ) { |
102 |
} else if ( active == 1 ) { |
90 |
type = 2; // public |
103 |
type = [% PUBLIC %]; |
91 |
dtListResults.fnDraw(); |
104 |
dtListResults.fnDraw(); |
92 |
} |
105 |
} |
93 |
} |
106 |
} |
Lines 95-101
$(document).ready(function(){
Link Here
|
95 |
}); |
108 |
}); |
96 |
[% END %] |
109 |
[% END %] |
97 |
|
110 |
|
98 |
[% IF ( viewshelf ) %] |
111 |
[% IF op == 'view' %] |
99 |
$(document).ready(function(){ |
112 |
$(document).ready(function(){ |
100 |
[% IF ( itemsloop ) %]$('#searchheader').fixFloat();[% END %] |
113 |
[% IF ( itemsloop ) %]$('#searchheader').fixFloat();[% END %] |
101 |
$("span.clearall").html("<a id=\"CheckNone\" href=\"/cgi-bin/koha/shelves.pl\">"+_("Clear all")+"<\/a>"); |
114 |
$("span.clearall").html("<a id=\"CheckNone\" href=\"/cgi-bin/koha/shelves.pl\">"+_("Clear all")+"<\/a>"); |
Lines 173-186
$(document).ready(function(){
Link Here
|
173 |
}); |
186 |
}); |
174 |
[% END %] |
187 |
[% END %] |
175 |
|
188 |
|
176 |
function confirmDelete(message){ |
|
|
177 |
if (window.confirm(message)) { |
178 |
location.href="/cgi-bin/koha/virtualshelves/shelves.pl?[% IF ( showprivateshelves ) %]display=privateshelves&[% END %]shelves=1&DEL-[% shelfnumber %]=1&shelfoff=[% shelfoff %]"; |
179 |
} else { |
180 |
return false; |
181 |
} |
182 |
} |
183 |
|
184 |
/** |
189 |
/** |
185 |
* This function checks if the adequate number of records are checked for merging |
190 |
* This function checks if the adequate number of records are checked for merging |
186 |
*/ |
191 |
*/ |
Lines 272-306
function placeHold () {
Link Here
|
272 |
[% INCLUDE 'header.inc' %] |
277 |
[% INCLUDE 'header.inc' %] |
273 |
[% INCLUDE 'cat-search.inc' %] |
278 |
[% INCLUDE 'cat-search.inc' %] |
274 |
|
279 |
|
275 |
[% BLOCK list_permissions %] |
280 |
<div id="breadcrumbs"> |
276 |
<li> |
281 |
<a href="/cgi-bin/koha/mainpage.pl">Home</a> › |
277 |
<label for="permissions">Permissions: </label> |
282 |
[% IF op != 'list' %] |
278 |
<select name="allow_add" id="allow_add"> |
283 |
<a href="/cgi-bin/koha/virtualshelves/shelves.pl">Lists</a> |
279 |
[% IF allow_add %]<option value="0">Do not allow</option>[% ELSE %]<option value="0" selected="selected">Do not allow</option>[% END %] |
284 |
[% ELSE %] |
280 |
[% IF allow_add %]<option value="1" selected="selected">Allow</option>[% ELSE %]<option value="1">Allow</option>[% END %] |
285 |
Lists |
281 |
</select> |
286 |
[% END %] |
282 |
<span>anyone else to add entries.</span> |
287 |
[% IF shelf AND shelf.category == PRIVATE %] › |
283 |
</li> |
288 |
[% IF op == 'view' OR op == 'edit_form' %] |
284 |
<li> |
289 |
<a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&category=[% PRIVATE %]">Your lists</a> |
285 |
<label> </label> |
290 |
[% ELSE %] |
286 |
<select name="allow_delete_own" id="allow_delete_own"> |
291 |
Your lists |
287 |
[% IF allow_delete_own %]<option value="0">Do not allow</option>[% ELSE %]<option value="0" selected="selected">Do not allow</option>[% END %] |
292 |
[% END %] |
288 |
[% IF allow_delete_own %]<option value="1" selected="selected">Allow</option>[% ELSE %]<option value="1">Allow</option>[% END %] |
293 |
[% ELSIF shelf AND shelf.category == PUBLIC %] › |
289 |
</select> |
294 |
[% IF op == 'view' %] |
290 |
<span>anyone to remove his own contributed entries.</span> |
295 |
<a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&category=[% PUBLIC %]">Public lists</a> |
291 |
</li> |
296 |
[% ELSE %] |
292 |
<li> |
297 |
Public lists |
293 |
<label> </label> |
298 |
[% END %] |
294 |
<select name="allow_delete_other" id="allow_delete_other"> |
299 |
[% END %] |
295 |
[% IF allow_delete_other %]<option value="0">Do not allow</option>[% ELSE %]<option value="0" selected="selected">Do not allow</option>[% END %] |
|
|
296 |
[% IF allow_delete_other %]<option value="1" selected="selected">Allow</option>[% ELSE %]<option value="1">Allow</option>[% END %] |
297 |
</select> |
298 |
<span>anyone to remove other contributed entries.</span> |
299 |
</li> |
300 |
[% END %] |
301 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/virtualshelves/shelves.pl">Lists</a> [% IF ( category1 ) %] › [% IF ( viewshelf || edit ) %] <a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves">Your lists</a> [% ELSE %] Your lists [% END %] [% ELSIF ( category2 ) %] › [% IF ( viewshelf ) %] <a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=publicshelves">Public lists</a> [% ELSE %] Public lists [% END %] [% ELSIF ( showprivateshelves ) %] › [% IF ( viewshelf || edit ) %] <a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves">Your lists</a> [% ELSE %] Your lists [% END %] [% ELSIF ( showpublicshelves ) %] › [% IF ( viewshelf || edit ) %] <a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=publicshelves">Public lists</a> [% ELSE %] Public lists [% END %] [% END %] |
302 |
|
300 |
|
303 |
[% IF ( viewshelf ) %]› Contents of <i>[% shelfname | html %]</i>[% END %][% IF ( shelves ) %] › Create new list[% END %][% IF ( edit ) %] › Edit list <i>[% shelfname | html %]</i>[% END %]</div> |
301 |
[% 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> |
304 |
|
302 |
|
305 |
<div id="doc3" class="yui-t2"> |
303 |
<div id="doc3" class="yui-t2"> |
306 |
<div id="bd"> |
304 |
<div id="bd"> |
Lines 318-387
function placeHold () {
Link Here
|
318 |
[% CASE 'error_on_insert' %] |
316 |
[% CASE 'error_on_insert' %] |
319 |
An error occurred when inserting this list. Perhaps the name already exists. |
317 |
An error occurred when inserting this list. Perhaps the name already exists. |
320 |
[% CASE 'error_on_delete' %] |
318 |
[% CASE 'error_on_delete' %] |
321 |
An error occurred when deleteing this list. Check the logs. |
319 |
An error occurred when deleting this list. Check the logs. |
|
|
320 |
[% CASE 'error_on_add_biblio' %] |
321 |
The item has not been added to the list. Please check it's not in this list yet. |
322 |
[% CASE 'success_on_update' %] |
322 |
[% CASE 'success_on_update' %] |
323 |
List updated with success. |
323 |
List updated with success. |
324 |
[% CASE 'success_on_insert' %] |
324 |
[% CASE 'success_on_insert' %] |
325 |
List inserted with success. |
325 |
List inserted with success. |
326 |
[% CASE 'success_on_delete' %] |
326 |
[% CASE 'success_on_delete' %] |
327 |
List deleted with success. |
327 |
List deleted with success. |
328 |
[% CASE 'Koha::Exception::DuplicateObject' %] |
328 |
[% CASE 'success_on_add_biblio' %] |
|
|
329 |
The item has been added to the list. |
330 |
[% CASE 'success_on_remove_biblios' %] |
331 |
The item has been removed from the list. |
332 |
[% CASE 'does_not_exist' %] |
333 |
This list does not exist. |
334 |
[% CASE 'item_does_not_exist' %] |
335 |
This item does not exist. |
336 |
[% CASE 'unauthorized_on_view' %] |
337 |
You do not have permission to view this list. |
338 |
[% CASE 'unauthorized_on_update' %] |
339 |
You do not have permission to update this list. |
340 |
[% CASE 'unauthorized_on_delete' %] |
341 |
You do not have permission to delete this list. |
342 |
[% CASE 'unauthorized_on_add_biblio' %] |
343 |
You do not have permission to add a biblio to this list. |
344 |
[% CASE 'no_biblio_removed' %] |
345 |
No biblio has been removed. |
346 |
[% CASE 'Koha::Exceptions::Virtualshelves::DuplicateObject' %] |
329 |
An error occurred when inserting this list. The name already [% shelfname %] exists. |
347 |
An error occurred when inserting this list. The name already [% shelfname %] exists. |
|
|
348 |
[% CASE 'DBIx::Class::Exception' %] |
349 |
[% m.msg %] |
330 |
[% CASE %] |
350 |
[% CASE %] |
331 |
[% m.code %] |
351 |
[% m.code %] |
332 |
[% END %] |
352 |
[% END %] |
333 |
</div> |
353 |
</div> |
334 |
[% END %] |
354 |
[% END %] |
335 |
|
355 |
|
336 |
[% IF ( paramsloop ) %] |
356 |
[% IF op == 'view' %] |
337 |
[% FOREACH paramsloo IN paramsloop %] |
|
|
338 |
<div class="yui-ge"> |
339 |
<div class="yui-u first"> |
340 |
[% IF ( paramsloo.status ) %]<div class="dialog alert">[% paramsloo.string %]</div>[% END %] |
341 |
[% IF ( paramsloo.nobarcode ) %]<div class="dialog alert">ERROR: No barcode given.</div>[% END %] |
342 |
[% IF ( paramsloo.noshelfnumber ) %]<div class="dialog alert">ERROR: No list number given.</div>[% END %] |
343 |
[% IF ( paramsloo.need_confirm ) %] |
344 |
<div class="dialog alert">The list <i>[% paramsloo.need_confirm %]</i> is not empty. |
345 |
[% IF ( paramsloo.single ) %] |
346 |
<br />It has <b>[% paramsloo.count %]</b> entry. |
347 |
[% ELSE %] |
348 |
<br />It has <b>[% paramsloo.count %]</b> entries. |
349 |
[% END %] |
350 |
<br />Use the "Confirm" button below to confirm deletion. |
351 |
</div> |
352 |
[% END %] |
353 |
[% IF ( paramsloo.nopermission ) %] |
354 |
<div class="dialog alert">ERROR: You do not have adequate permission for that action on list [% paramsloo.nopermission %].</div> |
355 |
[% END %] |
356 |
[% IF ( paramsloo.failgetitem ) %] |
357 |
<div class="dialog alert">ERROR: No item found with barcode [% paramsloo.failgetitem %].</div> |
358 |
[% END %] |
359 |
[% IF ( paramsloo.duplicatebiblio ) %] |
360 |
<div class="dialog alert">A record matching barcode <b>[% paramsloo.duplicatebiblio %]</b> has already been added.</div> |
361 |
[% END %] |
362 |
[% IF ( paramsloo.nothingdeleted) %] |
363 |
<div class="dialog message">Warning: You could not delete any of the selected items from this list.</div> |
364 |
[% END %] |
365 |
[% IF ( paramsloo.somedeleted) %] |
366 |
<div class="dialog message">Warning: You could not delete all selected items from this list.</div> |
367 |
[% END %] |
368 |
[% IF ( paramsloo.modifyfailure) %] |
369 |
<div class="dialog message">ERROR: List could not be modified.</div> |
370 |
[% END %] |
371 |
</div> |
372 |
</div> |
373 |
[% END %] |
374 |
[% END %] |
375 |
|
376 |
[% IF ( viewshelf ) %] |
377 |
<div class="yui-g"> |
357 |
<div class="yui-g"> |
378 |
[% IF ( itemsloop ) %] |
358 |
[% IF itemsloop %] |
379 |
|
359 |
|
380 |
<h3>Contents of <i>[% shelfname | html %]</i></h3> |
360 |
<h3>Contents of <i>[% shelf.shelfname | html %]</i></h3> |
381 |
<div class="pages">[% pagination_bar %]</div> |
361 |
<div class="pages">[% pagination_bar %]</div> |
382 |
<form action="/cgi-bin/koha/virtualshelves/shelves.pl" id="listform" method="post" class="checkboxed"> |
362 |
<form action="/cgi-bin/koha/virtualshelves/shelves.pl" id="listform" method="post" class="checkboxed"> |
383 |
<input type="hidden" name="viewshelf" value="[% shelfnumber %]" /> |
363 |
<input type="hidden" name="op" value="remove_biblios" /> |
384 |
<input type="hidden" name="modifyshelfcontents" value="1" /> |
364 |
<input type="hidden" name="referer" value="view" /> |
|
|
365 |
<input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber %]" /> |
385 |
|
366 |
|
386 |
[% IF direction == 'asc' %] |
367 |
[% IF direction == 'asc' %] |
387 |
[% SET new_direction = 'desc' %] |
368 |
[% SET new_direction = 'desc' %] |
Lines 391-406
function placeHold () {
Link Here
|
391 |
[% END %] |
372 |
[% END %] |
392 |
|
373 |
|
393 |
<div id="searchheader" class="noprint"> |
374 |
<div id="searchheader" class="noprint"> |
394 |
[% IF ( itemsloop ) %] |
375 |
[% IF itemsloop %] |
395 |
<div id="selection_ops"><span class="checkall"></span> | |
376 |
<div id="selection_ops"><span class="checkall"></span> | |
396 |
<span class="clearall"></span> |
377 |
<span class="clearall"></span> |
397 |
|
378 |
|
398 |
<span class="addto">| </span> |
379 |
<span class="addto">| </span> |
399 |
|
380 |
|
400 |
[% IF ( CAN_user_reserveforothers && DisplayMultiPlaceHold ) %] |
381 |
[% IF CAN_user_reserveforothers && Koha.Preference('DisplayMultiPlaceHold') %] |
401 |
<div class="btn-group"><button class="btn btn-mini placehold"><i class="fa fa-sticky-note-o"></i> Place hold</button></div> |
382 |
<div class="btn-group"><button class="btn btn-mini placehold"><i class="fa fa-sticky-note-o"></i> Place hold</button></div> |
402 |
[% END %] |
383 |
[% END %] |
403 |
[% IF ( allowremovingitems ) %] |
384 |
[% IF can_remove_biblios %] |
404 |
<div class="btn-group"><button type="submit" class="btn btn-mini list-remove"><i class="fa fa-times-circle"></i> Remove selected</button></div> |
385 |
<div class="btn-group"><button type="submit" class="btn btn-mini list-remove"><i class="fa fa-times-circle"></i> Remove selected</button></div> |
405 |
[% END %] |
386 |
[% END %] |
406 |
[% 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 %] |
387 |
[% 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 %] |
Lines 414-429
function placeHold () {
Link Here
|
414 |
|
395 |
|
415 |
[% UNLESS ( item_level_itypes ) %]<th>Item type</th>[% END %] |
396 |
[% UNLESS ( item_level_itypes ) %]<th>Item type</th>[% END %] |
416 |
<th> |
397 |
<th> |
417 |
<a href="/cgi-bin/koha/virtualshelves/shelves.pl?viewshelf=[% shelfnumber %]&sort=title&direction=[% IF sort != 'title' %]asc[% ELSE %][% new_direction %][% END %]">Title</a> |
398 |
<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> |
418 |
[% IF sort == 'title' %] |
399 |
[% IF sortfield == 'title' %] |
419 |
<img src="[% interface %]/[% theme %]/img/[% direction %].gif" alt="[% direction %] sort" /> |
400 |
<img src="[% interface %]/[% theme %]/img/[% direction %].gif" alt="[% direction %] sort" /> |
420 |
[% ELSE %] |
401 |
[% ELSE %] |
421 |
<img src="[% interface %]/[% theme %]/img/ascdesc.gif" alt="" /> |
402 |
<img src="[% interface %]/[% theme %]/img/ascdesc.gif" alt="" /> |
422 |
[% END %] |
403 |
[% END %] |
423 |
</th> |
404 |
</th> |
424 |
<th> |
405 |
<th> |
425 |
<a href="/cgi-bin/koha/virtualshelves/shelves.pl?viewshelf=[% shelfnumber %]&sort=author&direction=[% IF sort != 'author' %]asc[% ELSE %][% new_direction %][% END %]">Author</a> |
406 |
<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> |
426 |
[% IF sort == 'author' %] |
407 |
[% IF sortfield == 'author' %] |
427 |
<img src="[% interface %]/[% theme %]/img/[% direction %].gif" alt="[% direction %] sort" /> |
408 |
<img src="[% interface %]/[% theme %]/img/[% direction %].gif" alt="[% direction %] sort" /> |
428 |
[% ELSE %] |
409 |
[% ELSE %] |
429 |
<img src="[% interface %]/[% theme %]/img/ascdesc.gif" alt="" /> |
410 |
<img src="[% interface %]/[% theme %]/img/ascdesc.gif" alt="" /> |
Lines 431-460
function placeHold () {
Link Here
|
431 |
</th> |
412 |
</th> |
432 |
<th>Date added</th> |
413 |
<th>Date added</th> |
433 |
<th> |
414 |
<th> |
434 |
<a href="/cgi-bin/koha/virtualshelves/shelves.pl?viewshelf=[% shelfnumber %]&sort=itemcallnumber&direction=[% IF sort != 'itemcallnumber' %]asc[% ELSE %][% new_direction %][% END %]">Call number</a> |
415 |
<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> |
435 |
[% IF sort == 'itemcallnumber' %] |
416 |
[% IF sortfield == 'itemcallnumber' %] |
436 |
<img src="[% interface %]/[% theme %]/img/[% direction %].gif" alt="[% direction %] sort" /> |
417 |
<img src="[% interface %]/[% theme %]/img/[% direction %].gif" alt="[% direction %] sort" /> |
437 |
[% ELSE %] |
418 |
[% ELSE %] |
438 |
<img src="[% interface %]/[% theme %]/img/ascdesc.gif" alt="" /> |
419 |
<img src="[% interface %]/[% theme %]/img/ascdesc.gif" alt="" /> |
439 |
[% END %] |
420 |
[% END %] |
440 |
</th> |
421 |
</th> |
441 |
</tr> |
422 |
</tr> |
442 |
[% FOREACH itemsloo IN itemsloop %] |
423 |
[% FOREACH itemsloo IN itemsloop %] |
443 |
[% UNLESS ( loop.odd ) %] |
424 |
[% UNLESS ( loop.odd ) %] |
444 |
<tr class="highlight"> |
425 |
<tr class="highlight"> |
445 |
[% ELSE %] |
426 |
[% ELSE %] |
446 |
<tr> |
427 |
<tr> |
447 |
[% END %] |
428 |
[% END %] |
448 |
[% IF ( itemsloop ) %] |
429 |
[% IF itemsloop %] |
449 |
<td> |
430 |
<td> |
450 |
[% IF ( itemsloo.confirm ) %] |
431 |
<input type="checkbox" class="selection" value="[% itemsloo.biblionumber %]" name="biblionumber" /> |
451 |
<input type="hidden" name="CONFIRM-[% itemsloo.confirm %]" /> |
432 |
</td> |
452 |
<input type="checkbox" class="selection" value="[% itemsloo.biblionumber %]" name="REM-[% itemsloo.biblionumber %]" checked /> |
433 |
[% END %] |
453 |
[% ELSE %] |
|
|
454 |
<input type="checkbox" class="selection" value="[% itemsloo.biblionumber %]" name="REM-[% itemsloo.biblionumber %]" /> |
455 |
[% END %] |
456 |
</td> |
457 |
[% END %] |
458 |
[% UNLESS ( item_level_itypes ) %]<td> |
434 |
[% UNLESS ( item_level_itypes ) %]<td> |
459 |
[% UNLESS ( noItemTypeImages || !itemsloo.imageurl ) %]<img src="[% itemsloo.imageurl %]" alt="[% itemsloo.description %]" title="[% itemsloo.description %]" />[% END %][% itemsloo.description %] |
435 |
[% UNLESS ( noItemTypeImages || !itemsloo.imageurl ) %]<img src="[% itemsloo.imageurl %]" alt="[% itemsloo.description %]" title="[% itemsloo.description %]" />[% END %][% itemsloo.description %] |
460 |
</td>[% END %] |
436 |
</td>[% END %] |
Lines 483-492
function placeHold () {
Link Here
|
483 |
| <a href="/cgi-bin/koha/cataloguing/additem.pl?biblionumber=[% itemsloo.biblionumber %]">Edit items</a> |
459 |
| <a href="/cgi-bin/koha/cataloguing/additem.pl?biblionumber=[% itemsloo.biblionumber %]">Edit items</a> |
484 |
[% END %] |
460 |
[% END %] |
485 |
</p> |
461 |
</p> |
486 |
</td> |
462 |
</td> |
487 |
<td>[% itemsloo.author %]</td> |
463 |
<td>[% itemsloo.author %]</td> |
488 |
<td>[% itemsloo.dateadded %]</td> |
464 |
<td>[% itemsloo.dateadded | $KohaDates%]</td> |
489 |
<td> |
465 |
<td> |
490 |
<ul> |
466 |
<ul> |
491 |
[% FOREACH result IN itemsloo.ITEM_RESULTS %] |
467 |
[% FOREACH result IN itemsloo.ITEM_RESULTS %] |
492 |
<li>[% result.holdingbranch %] [% IF ( result.location_intranet ) %] ([% result.location_intranet %]) [% END %] |
468 |
<li>[% result.holdingbranch %] [% IF ( result.location_intranet ) %] ([% result.location_intranet %]) [% END %] |
Lines 505-592
function placeHold () {
Link Here
|
505 |
|
481 |
|
506 |
[% END %] |
482 |
[% END %] |
507 |
</div> |
483 |
</div> |
508 |
[% END %]<!-- /viewshelf --> |
484 |
[% END %] |
509 |
|
485 |
|
510 |
[% IF ( debug ) %] |
486 |
[% IF can_add_biblios %] |
511 |
[% IF ( edit ) %]<div>Edit is on ([% shelfname | html %])</div>[% END %] |
487 |
<div class="yui-g"> |
512 |
[% IF ( seflag ) %]<div>seflag is on ([% seflag %])</div>[% END %] |
488 |
<form action="/cgi-bin/koha/virtualshelves/shelves.pl" method="post"> |
|
|
489 |
<fieldset class="brief noprint"> |
490 |
<legend>Add an item to <i>[% shelfname | html %]</i></legend> |
491 |
<ol> |
492 |
<li> |
493 |
<label for="barcode">Barcode:</label> |
494 |
<input name="barcode" type="text" id="barcode" size="14" /> |
495 |
<input type="hidden" name="op" value="add_biblio" /> |
496 |
<input type="hidden" name="referer" value="view" /> |
497 |
<input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber %]" /> |
498 |
<input type="submit" value="Add" /> |
499 |
</li> |
500 |
</ol> |
501 |
</fieldset> |
502 |
</form> |
503 |
</div> |
513 |
[% END %] |
504 |
[% END %] |
514 |
|
505 |
|
515 |
[% IF ( seflag ) %] |
506 |
[% IF op == 'add_form' OR op == 'edit_form' %] |
516 |
<div class="yui-ge"> |
507 |
<div class="yui-ge"> |
517 |
<div class="yui-u first"> |
508 |
<div class="yui-u first"> |
518 |
<form method="post" action="/cgi-bin/koha/virtualshelves/shelves.pl" class="validated"> |
509 |
<form method="post" action="/cgi-bin/koha/virtualshelves/shelves.pl" class="validated"> |
519 |
<fieldset class="rows"> |
510 |
<fieldset class="rows"> |
520 |
|
511 |
|
521 |
[% IF ( shelves ) %] |
512 |
[% IF op == 'add_form' %] |
522 |
<legend>Create a new list</legend> |
513 |
<legend>Create a new list</legend> |
523 |
<input type="hidden" name="shelves" value="1" /> |
514 |
<input type="hidden" name="op" value="add" /> |
|
|
515 |
[% ELSE %] |
516 |
<legend>Edit list <i>[% shelf.shelfname | html %]</i></legend> |
517 |
<input type="hidden" name="op" value="edit" /> |
518 |
[% END %] |
519 |
<input type="hidden" name="referer" value="[% referer %]" /> |
520 |
<input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber %]" /> |
524 |
<ol> |
521 |
<ol> |
525 |
<li><label class="required" for="addshelf">List name:</label><input id="addshelf" type="text" name="addshelf" size="25" required="required" class="required" /> |
522 |
<li> |
|
|
523 |
<label for="shelfname" class="required">Name: </label><input type="text" id="shelfname" name="shelfname" size="25" value="[% shelf.shelfname |html %]" required="required" class="required" /> |
526 |
<span class="required">Required</span> |
524 |
<span class="required">Required</span> |
527 |
</li> |
525 |
</li> |
528 |
<li><span class="label">Owner: </span><input type="hidden" name="owner" id="owner" value="[% loggedinuser %]" />[% loggedinusername %]</li> |
526 |
<li> |
529 |
<li><label for="sortfield" >Sort this list by: </label> |
527 |
<span class="label">Owner: </span> |
530 |
<select name="sortfield" id="sortfield"> |
528 |
[% IF op == 'add_form' %] |
531 |
<option value="title">Title</option> |
529 |
<input type="hidden" name="owner" id="owner" value="[% loggedinusernumber %]" />[% loggedinusername %]</li> |
532 |
<option value="author">Author</option> |
530 |
[% ELSE %] |
533 |
<option value="copyrightdate">Copyrightdate</option> |
531 |
[% IF owner %] |
534 |
<option value="itemcallnumber">Call number</option> |
532 |
<input type="hidden" id="owner" name="owner" value="[% owner.borrowernumber %]" />[% owner.firstname _ ' ' _ owner.surname %] |
535 |
</select></li> |
533 |
[% ELSE %] |
536 |
<li><label for="category">Category: </label> |
534 |
<input type="hidden" id="owner" name="owner" value="[% loggedinusernumber %]" />[% loggedinusername %] |
537 |
<select name="category" id="category"> |
535 |
[% END %] |
538 |
<option value="1">Private</option> |
536 |
[% END %] |
539 |
<option value="2">Public</option> |
537 |
</li> |
540 |
</select></li> |
538 |
<li><label for="sortfield" >Sort this list by: </label> |
541 |
[% INCLUDE list_permissions %] |
539 |
<select name="sortfield"> |
542 |
</ol> |
540 |
[% IF shelf.sortfield == "title" %]<option value="title" selected="selected">Title</option>[% ELSE %]<option value="title">Title</option>[% END %] |
543 |
[% END %] |
541 |
[% IF shelf.sortfield == "author" %]<option value="author" selected="selected">Author</option>[% ELSE %]<option value="author">Author</option>[% END %] |
544 |
|
542 |
[% IF shelf.sortfield == "copyrightdate" %]<option value="copyrightdate" selected="selected">Copyrightdate</option>[% ELSE %]<option value="copyrightdate">Copyrightdate</option>[% END %] |
545 |
[% IF ( edit ) %] |
543 |
[% IF shelf.sortfield == "itemcallnumber" %]<option value="itemcallnumber" selected="selected">Call number</option>[% ELSE %]<option value="itemcallnumber">Call number</option>[% END %] |
546 |
<legend>Edit list <i>[% shelfname | html %]</i></legend> |
544 |
</select></li> |
547 |
<input type="hidden" name="display" value="[% display %]" /> |
545 |
<li><label for="category">Category: </label> |
548 |
<input type="hidden" name="op" value="modifsave" /> |
546 |
<select id="category" name="category"> |
549 |
[% IF ( showprivateshelves ) %]<input type="hidden" name="display" value="privateshelves" />[% END %] |
547 |
[% IF shelf.category == PRIVATE %] |
550 |
<input type="hidden" name="shelfnumber" value="[% shelfnumber %]" /> |
548 |
<option value="1" selected="selected">Private</option> |
551 |
<ol> |
549 |
[% ELSE %] |
552 |
<li><label for="shelfname" class="required">Name: </label><input type="text" id="shelfname" name="shelfname" size="25" value="[% shelfname |html %]" required="required" class="required" /> |
550 |
<option value="1">Private</option> |
553 |
<span class="required">Required</span> |
551 |
[% END %] |
554 |
</li> |
552 |
[% IF shelf.category == PUBLIC %] |
555 |
<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> |
553 |
<option value="2" selected="selected">Public</option> |
556 |
<li><label for="sortfield" >Sort this list by: </label> |
554 |
[% ELSE %] |
557 |
<select name="sortfield"> |
555 |
<option value="2">Public</option> |
558 |
[% IF ( sortfield == "title" ) %]<option value="title" selected="selected">Title</option>[% ELSE %]<option value="title">Title</option>[% END %] |
556 |
[% END %] |
559 |
[% IF ( sortfield == "author" ) %]<option value="author" selected="selected">Author</option>[% ELSE %]<option value="author">Author</option>[% END %] |
557 |
</select></li> |
560 |
[% IF ( sortfield == "copyrightdate" ) %]<option value="copyrightdate" selected="selected">Copyrightdate</option>[% ELSE %]<option value="copyrightdate">Copyrightdate</option>[% END %] |
|
|
561 |
[% IF ( sortfield == "itemcallnumber" ) %]<option value="itemcallnumber" selected="selected">Call number</option>[% ELSE %]<option value="itemcallnumber">Call number</option>[% END %] |
562 |
</select></li> |
563 |
<li><label for="category">Category: </label> |
564 |
<select id="category" name="category"> |
565 |
[% IF ( category1 ) %] |
566 |
<option value="1" selected="selected">Private</option> |
567 |
[% ELSE %] |
568 |
<option value="1">Private</option> |
569 |
[% END %] |
570 |
[% IF ( category2 ) %] |
571 |
<option value="2" selected="selected">Public</option> |
572 |
[% ELSE %] |
573 |
<option value="2">Public</option> |
574 |
[% END %] |
575 |
</select></li> |
576 |
[% INCLUDE list_permissions %] |
577 |
</ol> |
578 |
[% END %] |
579 |
|
558 |
|
580 |
</fieldset> |
559 |
[% FOR permission IN ['allow_add', 'allow_delete_own', 'allow_delete_other'] %] |
|
|
560 |
<li> |
561 |
[% IF loop.first %] |
562 |
<label for="permissions">Permissions: </label> |
563 |
[% ELSE %] |
564 |
<label> </label> |
565 |
[% END %] |
566 |
<select name="[% permission %]" id="[% permission %]"> |
567 |
[% IF shelf.$permission %]<option value="0">Do not allow</option>[% ELSE %]<option value="0" selected="selected">Do not allow</option>[% END %] |
568 |
[% IF shelf.$permission %]<option value="1" selected="selected">Allow</option>[% ELSE %]<option value="1">Allow</option>[% END %] |
569 |
</select> |
570 |
[% SWITCH permission %] |
571 |
[% CASE 'allow_add' %] <span>anyone else to add entries.</span> |
572 |
[% CASE 'allow_delete_own' %] <span>anyone to remove his own contributed entries.</span> |
573 |
[% CASE 'allow_delete_other' %] <span>anyone to remove other contributed entries.</span> |
574 |
[% END %] |
575 |
</li> |
576 |
[% END %] |
577 |
</ol> |
578 |
</fieldset> |
581 |
|
579 |
|
582 |
<fieldset class="action"><input type="submit" value="Save" class="submit" /> |
580 |
<fieldset class="action"> |
583 |
[% IF ( showprivateshelves ) %] |
581 |
<input type="submit" value="Save" class="submit" /> |
584 |
<a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves" class="cancel">Cancel</a> |
582 |
[% IF referer == 'view' %] |
585 |
[% ELSE %] |
583 |
<a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&shelfnumber=[% shelf.shelfnumber %]" class="cancel">Cancel</a> |
586 |
[% IF ( display == "viewshelf" ) %] |
584 |
[% ELSE %] |
587 |
<a href="/cgi-bin/koha/virtualshelves/shelves.pl?viewshelf=[% shelfnumber %]" class="cancel">Cancel</a> |
585 |
[% IF category == PUBLIC %] |
|
|
586 |
<a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&category=[% PUBLIC %]" class="cancel">Cancel</a> |
588 |
[% ELSE %] |
587 |
[% ELSE %] |
589 |
<a href="/cgi-bin/koha/virtualshelves/shelves.pl" class="cancel">Cancel</a> |
588 |
<a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&category=[% PRIVATE %]" class="cancel">Cancel</a> |
590 |
[% END %] |
589 |
[% END %] |
591 |
[% END %] |
590 |
[% END %] |
592 |
</fieldset> |
591 |
</fieldset> |
Lines 601-607
function placeHold () {
Link Here
|
601 |
</div> |
600 |
</div> |
602 |
</div> |
601 |
</div> |
603 |
</div> |
602 |
</div> |
604 |
[% END %]<!-- /seflag --> |
603 |
[% END %] |
605 |
|
604 |
|
606 |
[% IF op == 'list' %] |
605 |
[% IF op == 'list' %] |
607 |
<h2>Lists</h2> |
606 |
<h2>Lists</h2> |