Bug 26921: Don't generate an invalid custom cover image if the url cannot be generated
[koha.git] / koha-tmpl / opac-tmpl / bootstrap / en / modules / opac-shelves.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% SET PRIVATE = 1 %]
5 [% SET PUBLIC = 2 %]
6 [% SET TagsShowEnabled = ( ( Koha.Preference( 'TagsEnabled' ) == 1 ) && Koha.Preference('TagsShowOnList') ) %]
7 [% SET TagsInputEnabled = ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) && ( Koha.Preference( 'TagsEnabled' ) == 1 ) && Koha.Preference('TagsInputOnList') ) %]
8 [% SET AdlibrisEnabled = Koha.Preference('AdlibrisCoversEnabled') %]
9 [% SET AdlibrisURL = Koha.Preference('AdlibrisCoversURL') %]
10
11 [% BLOCK delete_shelf %]
12     <form action="/cgi-bin/koha/opac-shelves.pl" method="post" id="deleteshelf[% shelf.shelfnumber | html %]" class="d-inline">
13         <input type="hidden" name="op" value="delete" />
14         <input type="hidden" name="referer" value="list" />
15         <input type='hidden' name='category' value='[% category | html %]' />
16         <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
17         <button type="submit" class="btn btn-link remove deleteshelf" data-shelfnumber="[% shelf.shelfnumber | html %]" data-shelfname="[% shelf.shelfname | html %]" data-shared="[% shelf.is_shared | html %]" data-count="[% contents.count | html %]">
18             <i class="fa fa-remove" aria-hidden="true"></i>
19             [% IF ( context == "list" ) %]
20                 Delete
21             [% ELSE %]
22                 Delete list
23             [% END %]
24         </button>
25     </form>
26 [% END %]
27
28 [% INCLUDE 'doc-head-open.inc' %]
29 <title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog &rsaquo;   [% IF op == 'view' %]Contents of [% shelf.shelfname | html %][% ELSE %]Your lists[% END %]</title>[% INCLUDE 'doc-head-close.inc' %]
30 [% BLOCK cssinclude %][% END %]
31 </head>
32 [% IF ( loggedinusername ) %]
33     [% INCLUDE 'bodytag.inc' bodyid='opac-userlists' bodyclass='scrollto' %]
34 [% ELSE %]
35     [% INCLUDE 'bodytag.inc' bodyid='opac-lists' bodyclass='scrollto' %]
36 [% END %]
37
38 [% BLOCK list_permissions %]
39     <li>
40         <label for="allow_changes_from">Allow changes to contents from: </label>
41         <select name="allow_changes_from" id="allow_changes_from" onchange="AdjustRemark()">
42
43             [% IF shelf.allow_change_from_owner %]<option value="0">Nobody</option>[% ELSE %]<option value="0" selected="selected">Nobody</option>[% END %]
44
45             [% IF shelf.allow_change_from_owner && (( !shelf.is_public && !shelf.is_shared ) || !shelf.allow_change_from_others ) %]
46                 <option value="1" selected="selected">Owner only</option>
47             [% ELSE %]
48                 <option value="1">Owner only</option>
49             [% END %]
50
51             [% IF shelf.allow_change_from_others %]<option value="2" selected="selected">Anyone seeing this list</option>[% ELSE %]<option value="2">Anyone seeing this list</option>[% END %]
52
53         </select>
54         &emsp; <span id="anyone_remark" style="display:none;color:red;">The "Anyone" permission has no actual effect while this list is strictly private.</span>
55     </li>
56 [% END %]
57
58 [% INCLUDE 'masthead.inc' %]
59 <div class="main">
60     <nav aria-label="breadcrumb">
61         <ul class="breadcrumb">
62             <li class="breadcrumb-item">
63                 <a href="/cgi-bin/koha/opac-main.pl">Home</a>
64             </li>
65             [% IF ( loggedinusername ) %]
66                 <li class="breadcrumb-item">
67                     <a href="/cgi-bin/koha/opac-user.pl">[% INCLUDE 'patron-title.inc' patron = logged_in_user %]</a>
68                 </li>
69             [% END %]
70
71             [% IF op != 'list' %]
72                 <li class="breadcrumb-item">
73                     <a href="/cgi-bin/koha/opac-shelves.pl">Lists</a>
74                 </li>
75             [% ELSE %]
76                 <li class="breadcrumb-item" aria-current="page">
77                     Lists
78                 </li>
79             [% END %]
80
81             [% IF shelf and shelf.is_private %]
82                 [% IF op == 'view' OR op == 'edit_form' %]
83                     <li class="breadcrumb-item">
84                         <a href="/cgi-bin/koha/opac-shelves.pl?op=list&amp;category=[% PRIVATE | uri %]">Your lists</a>
85                     </li>
86                 [% ELSE %]
87                     <li class="breadcrumb-item" aria-current="page">
88                         Your lists
89                     </li>
90                 [% END %]
91             [% ELSIF shelf AND shelf.is_public %]
92                 [% IF op == 'view' %]
93                     <li class="breadcrumb-item">
94                         <a href="/cgi-bin/koha/opac-shelves.pl?op=list&amp;category=[% PUBLIC | uri %]">Public lists</a>
95                     </li>
96                 [% ELSE %]
97                     <li class="breadcrumb-item" aria-current="page">
98                         Public lists
99                     </li>
100                 [% END %]
101             [% END %]
102
103             [% IF op == 'view' %]
104                 <li class="breadcrumb-item" aria-current="page">
105                     Contents of &nbsp;<em>[% shelf.shelfname | html %]</em>
106                 </li>
107             [% END %]
108
109             [% IF op == 'add_form' %]
110                 <li class="breadcrumb-item" aria-current="page">
111                     Create new list
112                 </li>
113             [% END %]
114
115             [% IF op == 'edit_form' %]
116                 <li class="breadcrumb-item" aria-current="page">
117                     Edit list &nbsp;<em>[% shelf.shelfname | html %]</em>
118                 </li>
119             [% END %]
120         </ul> <!-- / .breadcrumb -->
121     </nav>
122
123     <div class="container-fluid">
124         <div class="row">
125             [% IF ( OpacNav||loggedinusername ) %]
126                 <div class="col col-lg-2 order-2 order-lg-1">
127                     <div id="navigation">
128                         [% INCLUDE 'navigation.inc' IsPatronPage=1 %]
129                     </div>
130                 </div>
131                 <div class="col-md-12 col-lg-10 order-1">
132             [% ELSE %]
133                 <div class="col order-first order-md-first order-lg-2">
134             [% END %]
135
136                 <div id="usershelves" class="maincontent">
137
138                     [% FOR m IN messages %]
139                         [% SWITCH m.type %]
140                             [% CASE 'message' %]
141                                 <div class="alert alert-success" role="alert">
142                             [% CASE 'error' %]
143                                 <div class="alert alert-danger" role="alert">
144                         [% END %]
145                         [% SWITCH m.code %]
146                         [% CASE 'error_on_update' %]
147                             <span>An error occurred when updating this list.</span>
148                         [% CASE 'error_on_insert' %]
149                             <span>An error occurred when creating this list.</span>
150                         [% CASE 'error_on_delete' %]
151                             <span>An error occurred when deleting this list.</span>
152                         [% CASE 'error_on_add_biblio' %]
153                             <span>The item has not been added to the list. Please check it's not already in the list.</span>
154                         [% CASE 'error_on_remove_share' %]
155                             <span>The share has not been removed.</span>
156                         [% CASE 'success_on_update' %]
157                             <span>List updated.</span>
158                         [% CASE 'success_on_insert' %]
159                             <span>List created.</span>
160                         [% CASE 'success_on_delete' %]
161                             <span>List deleted.</span>
162                         [% CASE 'success_on_add_biblio' %]
163                             <span>The item has been added to the list.</span>
164                         [% CASE 'success_on_remove_biblios' %]
165                             <span>The item has been removed from the list.</span>
166                         [% CASE 'success_on_remove_share' %]
167                             <span>The share has been removed.</span>
168                         [% CASE 'does_not_exist' %]
169                             <span>This list does not exist.</span>
170                         [% CASE 'item_does_not_exist' %]
171                             <span>This item does not exist.</span>
172                         [% CASE 'unauthorized_on_view' %]
173                             <span>You do not have permission to view this list.</span>
174                         [% CASE 'unauthorized_on_insert' %]
175                             <span>You do not have permission to create a new list.</span>
176                         [% CASE 'unauthorized_on_update' %]
177                             <span>You do not have permission to update this list.</span>
178                         [% CASE 'unauthorized_on_delete' %]
179                             <span>You do not have permission to delete this list.</span>
180                         [% CASE 'unauthorized_on_add_biblio' %]
181                             <span>You do not have permission to add a record to this list.</span>
182                         [% CASE 'no_biblio_removed' %]
183                             <span>No record was removed.</span>
184                         [% CASE 'Koha::Exceptions::Virtualshelves::DuplicateObject' %]
185                             <span>An error occurred when creating the list. The name [% shelfname | html %] already exists.</span>
186                         [% CASE 'DBIx::Class::Exception' %]
187                             [% m.msg | html %]
188                         [% CASE %]
189                             [% m.code | html %]
190                             [% m.msg | html %]
191                         [% END %]
192                         </div>
193                     [% END %]
194
195                     [% IF shelf AND op == 'view' %]
196                         <h2>
197                             [% shelf.shelfname | html %]
198                             <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-shelves.pl?rss=1&amp;op=view&amp;shelfnumber=[% shelf.shelfnumber | uri %]" class="rss-list-link noprint" aria-label="Subscribe to this list">
199                                 <i class="fa fa-fw fa-rss rsssearchicon" aria-hidden="true" title="Subscribe to this list"></i>
200                             </a>
201                         </h2>
202
203                         [% IF ( itemsloop ) %]
204                             [% SET contents = shelf.get_contents %]
205                             [% IF ( contents.count ) %]<p>This list contains [% contents.count | html %] titles</p>[% END %]
206                             <div id="floating">
207                                 <div id="toolbar" class="toolbar clearfix">
208                                     <div class="list-actions">
209                                         <a class="btn btn-link newshelf" href="/cgi-bin/koha/opac-shelves.pl?op=add_form"><i class="fa fa-fw fa-plus" aria-hidden="true"></i> New list</a> <span class="sep">|</span>
210
211                                         <div id="download-list" class="btn-group dropdown">
212                                             <a id="format" class="btn btn-link dropdown-toggle" data-toggle="dropdown" href="/cgi-bin/koha/opac-downloadshelf.pl?shelfnumber=[% shelf.shelfnumber | html %]"><i class="fa fa-fw fa-download" aria-hidden="true"></i> Download <b class="caret"></b></a>
213                                             <div class="dropdown-menu pull-left" role="menu" aria-labelledby="format">
214                                                 <a role="menuitem" class="dropdown-item download-list" data-format="bibtex" href="#">BibTeX</a>
215                                                 <a role="menuitem" class="dropdown-item download-list" data-format="isbd" href="#">ISBD</a>
216                                                 <a role="menuitem" class="dropdown-item download-list" data-format="iso2709" href="#">MARC</a>
217                                                 <a role="menuitem" class="dropdown-item download-list" data-format="ris" href="#">RIS (Zotero, EndNote, others)</a>
218                                                 [% FOREACH csv_profile IN csv_profiles %]
219                                                     <a role="menuitem" class="dropdown-item download-list" data-format="[% csv_profile.export_format_id | html %]" href="#">CSV - [% csv_profile.profile | html %]</a>
220                                                 [% END %]
221                                             </div>
222                                         </div>
223
224                                         [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
225                                             <span class="sendlist"><a href="/cgi-bin/koha/opac-sendshelf.pl?shelfid=[% shelf.shelfnumber | uri %]" class="btn btn-link send" onclick="open('/cgi-bin/koha/opac-sendshelf.pl?shelfid=[% shelf.shelfnumber | html %]','win_form','scrollbars=yes,resizable=yes,height=400,width=500,top=50,left=100'); return false; "><i class="fa fa-fw fa-envelope" aria-hidden="true"></i> Send list</a></span>
226                                         [% END %]
227
228                                         <a class="btn btn-link print-small" target="_blank" href="/cgi-bin/koha/opac-shelves.pl?op=view&amp;shelfnumber=[% shelf.shelfnumber | html %]&sortfield=[% sortfield | html %]&direction=[% direction | uri %]&print=1"><i class="fa fa-fw fa-print" aria-hidden="true"></i> Print list</a>
229
230                                         [% IF can_manage_shelf %]
231                                             <span class="sep">|</span>
232                                             <form method="get" action="/cgi-bin/koha/opac-shelves.pl" class="d-inline">
233                                                 <input type="hidden" name="op" value="edit_form" />
234                                                 <input type="hidden" name="referer" value="view" />
235                                                 <input type='hidden' name='category' value='[% shelf.category | html %]' />
236                                                 <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
237                                                 <button type="submit" class="btn btn-link editshelf"><i class="fa fa-fw fa-pencil-square-o" aria-hidden="true"></i> Edit list</button>
238                                             </form>
239
240                                             [% PROCESS delete_shelf context = "details" %]
241
242                                             [% IF category == PRIVATE && Koha.Preference('OpacAllowSharingPrivateLists') %]
243                                                 <a href="/cgi-bin/koha/opac-shareshelf.pl?op=invite&shelfnumber=[% shelf.shelfnumber | uri %]" class="btn btn-link sharelist"><i class="fa fa-fw fa-share" aria-hidden="true"></i> Share list</a>
244                                             [% END %]
245                                         [% ELSIF category == PRIVATE # not manageshelf and private means shared %]
246                                             <form action="/cgi-bin/koha/opac-shelves.pl" method="post" id="unshare[% shelf.shelfnumber | html %]" class="d-inline">
247                                                 <input type="hidden" name="op" value="remove_share" />
248                                                 <input type="hidden" name="referer" value="list" />
249                                                 <input type='hidden' name='category' value='[% category | html %]' />
250                                                 <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
251                                                 <button type="submit" class="btn btn-link remove remove_share" data-shelfname="[% shelf.shelfname | html %]" data-shelfnumber="[% shelf.shelfnumber | html %]">
252                                                     <i class="fa fa-remove" aria-hidden="true"></i> Remove share
253                                                 </button>
254                                             </form>
255                                         [% END # /IF can_manage_shelf %]
256                                     </div> <!-- /.list-actions -->
257
258                                     <form action="/cgi-bin/koha/opac-shelves.pl" id="sorting-form" class="d-inline sort_by pull-right">
259                                         <input type="hidden" name="op" value="view" />
260                                         <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
261
262                                         <label for="sortfield">Sort by: </label>
263                                         <select name="sortfield" id="sortfield" class="resort">
264                                             <option value="">Default sorting</option>
265                                             <optgroup label="Author">
266                                                 [% IF sortfield == 'author' && direction == 'asc' %]
267                                                     <option value="author:asc" selected="selected">Author (A-Z)</option>
268                                                 [% ELSE %]
269                                                     <option value="author:asc">Author (A-Z)</option>
270                                                 [% END %]
271                                                 [% IF sortfield == 'author' && direction == 'desc' %]
272                                                     <option value="author:desc" selected="selected">Author (Z-A)</option>
273                                                 [% ELSE %]
274                                                     <option value="author:desc">Author (Z-A)</option>
275                                                 [% END %]
276                                             </optgroup>
277                                             <optgroup label="Title">
278                                                 [% IF sortfield == 'title' && direction == 'asc' %]
279                                                     <option value="title:asc" selected="selected">Title (A-Z)</option>
280                                                 [% ELSE %]
281                                                     <option value="title:asc">Title (A-Z)</option>
282                                                 [% END %]
283                                                 [% IF sortfield == 'title' && direction == 'desc' %]
284                                                     <option value="title:desc" selected="selected">Title (Z-A)</option>
285                                                 [% ELSE %]
286                                                     <option value="title:desc">Title (Z-A)</option>
287                                                 [% END %]
288                                             </optgroup>
289                                             <optgroup label="Call number">
290                                                 [% IF sortfield == 'itemcallnumber' && direction == 'asc' %]
291                                                     <option value="itemcallnumber:asc" selected="selected">Call number (A-Z)</option>
292                                                 [% ELSE %]
293                                                     <option value="itemcallnumber:asc">Call number (A-Z)</option>
294                                                 [% END %]
295                                                 [% IF sortfield == 'itemcallnumber' && direction == 'desc' %]
296                                                     <option value="itemcallnumber:desc" selected="selected">Call number (Z-A)</option>
297                                                 [% ELSE %]
298                                                     <option value="itemcallnumber:desc">Call number (Z-A)</option>
299                                                 [% END %]
300                                             </optgroup>
301                                             <optgroup label="Copyright date">
302                                                 [% IF sortfield == 'copyrightdate' && direction == 'asc' %]
303                                                     <option value="copyrightdate:desc" selected="selected">Copyright date (newest to oldest)</option>
304                                                 [% ELSE %]
305                                                     <option value="copyrightdate:desc">Copyright date (newest to oldest)</option>
306                                                 [% END %]
307                                                 [% IF sortfield == 'copyrightdate' && direction == 'desc' %]
308                                                     <option value="copyrightdate:asc" selected="selected">Copyright date (oldest to newest)</option>
309                                                 [% ELSE %]
310                                                     <option value="copyrightdate:asc">Copyright date (oldest to newest)</option>
311                                                 [% END %]
312                                             </optgroup>
313                                             <optgroup label="Date added">
314                                                 [% IF sortfield == "dateadded" && direction == 'asc' %]
315                                                     <option value="dateadded:desc" selected="selected">Date added (newest to oldest)</option>
316                                                 [% ELSE %]
317                                                     <option value="dateadded:desc">Date added (newest to oldest)</option>
318                                                 [% END %]
319                                                 [% IF sortfield == "dateadded" && direction == 'desc' %]
320                                                     <option value="dateadded:asc" selected="selected">Date added (oldest to newest)</option>
321                                                 [% ELSE %]
322                                                     <option value="dateadded:asc">Date added (oldest to newest)</option>
323                                                 [% END %]
324                                             </optgroup>
325                                         </select>
326
327                                         <input type="submit" class="btn btn-primary btn-sm" id="sort-submit" value="Resort list" />
328                                     </form> <!-- /#sorting-form -->
329
330                                 </div> <!-- / #toolbar -->
331
332                                 <div id="selections-toolbar" class="toolbar noprint">
333                                     <span class="checkall"></span> <span class="clearall"></span> <span class="sep">|</span>
334                                     <span class="links">
335                                         <span id="selections">Select titles to: </span>
336                                         [% IF Koha.Preference( 'RequestOnOpac' ) == 1 %]
337                                             <span id="placehold"></span>
338                                         [% END %]
339                                         [% IF ( TagsInputEnabled && loggedinusername ) %]
340                                             <span id="addtags">
341                                                 <a id="tagsel_tag" href="#" class="btn btn-link btn-disabled"><i class="fa fa-fw fa-tag" aria-hidden="true"></i> Tag</a>
342                                             </span>
343                                             <span id="tagsel_form" class="form-inline" style="display:none">
344                                                 <label for="tagsel_new">New tag(s), separated by a comma:</label>
345                                                 <input class="form-control form-control-sm" type="text" name="tagsel_new" id="tagsel_new" maxlength="100" />
346                                                 <input id="tagsel_button" name="tagsel_button" class="tagsel_button btn btn-primary btn-sm" title="tagsel_button" type="submit" value="Add" />
347                                                 <a href="#" id="tagsel_cancel">Cancel</a>
348                                             </span>
349                                         [% END %]
350                                         [% IF loggedinusername && can_remove_biblios %]
351                                             <span id="removeitems"></span>
352                                         [% END %]
353                                     </span> <!-- / .links -->
354                                 </div> <!-- / #selections-toolbar -->
355                             </div> <!-- /#floating -->
356
357                             <form action="/cgi-bin/koha/opac-shelves.pl" method="post" id="myform" name="myform">
358                                 [% IF can_manage_shelf %]
359                                     <input type="hidden" name="op" value="remove_biblios" />
360                                     <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
361                                 [% END %]
362                                 <div class="searchresults">
363                                     <table id="listcontents" class="table">
364                                         <tbody>
365                                             [% FOREACH itemsloo IN itemsloop %]
366                                                 <tr>
367                                                     [% IF ( itemsloo.title ) %]
368                                                         [% check_title = itemsloo.title %]
369                                                     [% ELSE %]
370                                                         [% check_title = itemsloo.biblionumber %]
371                                                     [% END %]
372                                                     <td class="select selectcol"><input type="checkbox" class="cb" name="biblionumber" value="[% itemsloo.biblionumber | html %]" aria-label="[% check_title | html %]"/></td>
373                                                     [% UNLESS ( item_level_itypes ) %]
374                                                         <td>
375                                                             [% UNLESS ( Koha.Preference('OpacNoItemTypeImages') ) %]
376                                                                 <img src="[% itemsloo.imageurl | html %]" alt="[% itemsloo.description | html %]" title="[% itemsloo.description | html %]" />
377                                                             [% END %]
378                                                             [% itemsloo.description | html %]
379                                                         </td>
380                                                     [% END %]
381                                                     <td>
382                                                         <div class="coverimages">
383                                                             <a class="p1" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% itemsloo.biblionumber | html %]">
384                                                                 [% IF ( itemsloo.title ) %]
385                                                                     [% img_title = itemsloo.title %]
386                                                                 [% ELSE %]
387                                                                     [% img_title = itemsloo.biblionumber %]
388                                                                 [% END %]
389
390                                                                 [% IF ( OPACLocalCoverImages ) %]
391                                                                     <span title="[% img_title | html %]" class="[% itemsloo.biblionumber | html %]" id="local-thumbnail[% loop.count | html %]"></span>
392                                                                 [% END %]
393                                                                 [% IF ( AdlibrisEnabled && itemsloo.normalized_isbn ) %]
394                                                                     <img src="[% AdlibrisURL | html %]?isbn=[% itemsloo.normalized_isbn | html %]" class="adlibris-cover" alt="Adlibris cover image" />
395                                                                 [% END %]
396                                                                 [% IF ( OPACAmazonCoverImages ) %]
397                                                                     [% IF ( itemsloo.normalized_isbn ) %]
398                                                                         <span title="[% img_title | html %]" id="amazon-thumbnail[% loop.count | html %]"><img src="https://images-na.ssl-images-amazon.com/images/P/[% itemsloo.normalized_isbn | html %].01.TZZZZZZZ.jpg" alt="" /></span>
399                                                                     [% ELSE %]
400                                                                         <span class="no-image">No cover image available</span>
401                                                                     [% END %]
402                                                                 [% END %]
403
404                                                                 [% IF ( SyndeticsEnabled && SyndeticsCoverImages ) %]
405                                                                     <span title="[% img_title | html %]" id="syndetics-thumbnail[% loop.count | html %]"><img src="https://secure.syndetics.com/index.aspx?isbn=[% itemsloo.normalized_isbn | html %]/SC.GIF&amp;client=[% SyndeticsClientCode | html %]&amp;type=xw10&amp;upc=[% itemsloo.normalized_upc | html %]&amp;oclc=[% itemsloo.normalized_oclc | html %]" alt="" /></span>
406                                                                 [% END %]
407
408                                                                 [% IF ( GoogleJackets ) %]
409                                                                     [% IF ( itemsloo.normalized_isbn ) %]
410                                                                         <div title="[% img_title | html %]" class="[% itemsloo.normalized_isbn | html %]" id="gbs-thumbnail[% loop.count | html %]"></div>
411                                                                     [% ELSE %]
412                                                                         <span class="no-image">No cover image available</span>
413                                                                     [% END %]
414                                                                 [% END %]
415
416                                                                 [% IF ( Koha.Preference('OpacCoce') && Koha.Preference('CoceProviders') ) %]
417                                                                     [% coce_id = itemsloo.normalized_ean || itemsloo.normalized_isbn %]
418                                                                     [% IF ( coce_id ) %]
419                                                                         <span title="[% img_title | html %]" class="[% coce_id | html %]" id="coce-thumbnail[% loop.count | html %]"></span>
420                                                                     [% ELSE %]
421                                                                         <span class="no-image">No cover image available</span>
422                                                                     [% END %]
423                                                                 [% END %]
424
425
426                                                                 [% IF OpenLibraryCovers %]
427                                                                     [% IF itemsloo.normalized_isbn %]
428                                                                         <span title="[% img_title | html %]" class="[% itemsloo.normalized_isbn | html %]" id="openlibrary-thumbnail[% loop.count | html %]"></span>
429                                                                     [% ELSE %]
430                                                                         <span class="no-image">No cover image available</span>
431                                                                     [% END %]
432                                                                 [% END %]
433
434                                                             </a> <!-- / .p1 -->
435                                                             [% IF ( Koha.Preference('BakerTaylorEnabled') && !Koha.Preference('BakerTaylorBookstoreURL') ) %]
436                                                                 [% bt_id = ( itemsloo.normalized_upc || itemsloo.normalized_isbn ) %]
437                                                                 [% IF ( bt_id ) %]
438                                                                     <img alt="See Baker &amp; Taylor" src="[% BakerTaylorImageURL | html %][% bt_id | html %]" />
439                                                                 [% ELSE %]
440                                                                     <span class="no-image">No cover image available</span>
441                                                                 [% END %]
442                                                             [% END %]
443
444                                                             [% IF ( Koha.Preference('BakerTaylorEnabled') && Koha.Preference('BakerTaylorBookstoreURL') ) %]
445                                                                 [% bt_id = ( itemsloo.normalized_upc || itemsloo.normalized_isbn ) %]
446                                                                 [% IF ( bt_id ) %]
447                                                                     <a href="https://[% Koha.Preference('BakerTaylorBookstoreURL') | uri %][% bt_id | uri %]">
448                                                                         <img alt="See Baker &amp; Taylor" src="[% BakerTaylorImageURL | html %][% bt_id | html %]" />
449                                                                     </a>
450                                                                 [% ELSE %]
451                                                                     <span class="no-image">No cover image available</span>
452                                                                 [% END %]
453                                                             [% END %]
454
455                                                             [% IF Koha.Preference('OPACCustomCoverImages') AND Koha.Preference('CustomCoverImagesURL') %]
456                                                                 [% SET custom_cover_image_url = itemsloo.biblio_object.custom_cover_image_url %]
457                                                                 [% IF custom_cover_image_url %]
458                                                                     [% IF ( itemsloo.BiblioDefaultViewmarc ) %]
459                                                                         <a class="custom_cover_image" href="/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=[% itemsloo.biblionumber |url %]">
460                                                                     [% ELSE %]
461                                                                         [% IF ( itemsloo.BiblioDefaultViewisbd ) %]
462                                                                             <a class="custom_cover_image" href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=[% itemsloo.biblionumber |url %]">
463                                                                         [% ELSE %]
464                                                                             <a class="custom_cover_image" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% itemsloo.biblionumber |url %]">
465                                                                         [% END %]
466                                                                     [% END %]
467                                                                     <img alt="Cover image" src="[% custom_cover_image_url | url %]" /></a>
468                                                                 [% END %]
469                                                             [% END %]
470
471                                                         </div>
472                                                         [% IF ( itemsloo.XSLTBloc ) %]
473                                                             [% itemsloo.XSLTBloc | $raw %]
474                                                         [% ELSE %]
475
476                                                             [% IF ( itemsloo.BiblioDefaultViewmarc ) %]
477                                                                 <a class="title" href="/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=[% itemsloo.biblionumber |url %]" title="View details for this title">
478                                                             [% ELSE %]
479                                                                 [% IF ( itemsloo.BiblioDefaultViewisbd ) %]
480                                                                     <a class="title" href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=[% itemsloo.biblionumber |url %]" title="View details for this title">
481                                                                 [% ELSE %]
482                                                                     <a class="title" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% itemsloo.biblionumber |url %]" title="View details for this title">
483                                                                 [% END %]
484                                                             [% END %]
485
486                                                             [% INCLUDE 'biblio-title.inc' biblio=itemsloo %]
487                                                             </a>
488
489                                                             [% IF ( itemsloo.author ) %]
490                                                                 by <a href="/cgi-bin/koha/opac-search.pl?q=au:[% itemsloo.author |url %]" title="Search for works by this author" class="author">[% itemsloo.author | html %]</a>
491                                                             [% ELSE %]
492                                                                 &nbsp;
493                                                             [% END %]
494
495                                                             <span class="results_summary">
496                                                                 <span class="label">Publication:</span>
497                                                                 [% IF ( itemsloo.place ) %]
498                                                                     [% itemsloo.place | html %]
499                                                                 [% END %]
500                                                                 [% IF ( itemsloo.publishercode ) %]
501                                                                     [% itemsloo.publishercode | html %]
502                                                                 [% END %]
503                                                                 [% IF ( itemsloo.publicationyear ) %]
504                                                                     [% itemsloo.publicationyear | html %]
505                                                                 [% ELSE %]
506                                                                     [% IF ( itemsloo.copyrightdate ) %]
507                                                                         [% itemsloo.copyrightdate | html %]
508                                                                     [% END %]
509                                                                 [% END %]
510                                                                 [% IF ( itemsloo.pages ) %]. [% itemsloo.pages | html %][% END %]
511                                                                 [% IF ( itemsloo.notes ) %], [% itemsloo.notes | html %][% END %]
512                                                                 [% IF ( itemsloo.item('size') ) %] [% itemsloo.item('size') | html %][% END %]
513                                                             </span>
514                                                             <span class="results_summary">
515                                                                 <span class="label">Holdings:</span>
516                                                                 [% IF ( itemsloo.ITEM_RESULTS ) %]
517                                                                     [% FOREACH ITEM_RESULT IN itemsloo.ITEM_RESULTS %]
518                                                                         [% ITEM_RESULT.homebranch | html %]
519                                                                         [% IF ( ITEM_RESULT.location_opac ) %]
520                                                                             <span class="shelvingloc">[% ITEM_RESULT.location_opac | html %]</span>
521                                                                         [% END %]
522                                                                         [% IF ( ITEM_RESULT.itemcallnumber ) %]
523                                                                             ([% ITEM_RESULT.itemcallnumber | html %])
524                                                                                 [% IF ( loop.last ) %].[% ELSE %],[% END %]
525                                                                         [% END %]
526                                                                     [% END %]
527                                                                 [% ELSE %]
528                                                                     This record has no items.
529                                                                 [% END %]
530                                                             </span>
531                                                         [% END # / IF itemsloo.XSLTBloc %]
532
533                                                         [% IF ( TagsShowEnabled && itemsloo.TagLoop.size ) %]
534                                                             <div class="results_summary tags">
535                                                                 <span class="label">Tags:</span>
536                                                                 <ul>
537                                                                     [% FOREACH TagLoo IN itemsloo.TagLoop %]
538                                                                         <li><a href="/cgi-bin/koha/opac-search.pl?tag=[% TagLoo.term |url %]&amp;q=[% TagLoo.term |url %]">[% TagLoo.term | html %]</a> <span class="weight">([% TagLoo.weight_total | html %])</span></li>
539                                                                     [% END %]
540                                                                 </ul>
541                                                             </div>
542                                                         [% END %]
543
544                                                         [% INCLUDE 'title-actions-menu.inc' items=itemsloo %]
545
546                                                         [% INCLUDE "openlibrary-readapi.inc" bib = itemsloo %]
547                                                         <!-- COinS / Openurl -->
548                                                         <span class="Z3988" title="[% itemsloo.coins | html %]"></span>
549                                                     </td>
550                                                 </tr>
551                                             [% END # / FOREACH itemsloop %]
552                                         </tbody>
553                                     </table> <!-- / #listcontents -->
554                                 </div><!-- / .searchresults -->
555
556                                 [% IF ( pagination_bar ) %]
557                                     <div class="pages">[% pagination_bar | $raw %]</div>
558                                 [% END %]
559
560                                 [% IF can_remove_biblios %]
561                                     <input type="hidden" name="op" value="remove_biblios" />
562                                     <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
563                                     <input type="hidden" name="modifyshelfcontents" value="1" />
564                                     <input type="submit" value="Remove selected items" id="remove-selected" class="btn btn-danger"/>
565                                 [% END %]
566                             </form> <!-- /myform -->
567                         [% ELSE %]
568                             <div id="toolbar" class="toolbar clearfix">
569                                 <div class="list-actions">
570                                     <a class="btn btn-link newshelf" href="/cgi-bin/koha/opac-shelves.pl?op=add_form"><i class="fa fa-fw fa-plus" aria-hidden="true"></i> New list</a>
571                                     [% IF can_manage_shelf %]
572                                         <span class="sep">|</span>
573                                         <form method="get" action="/cgi-bin/koha/opac-shelves.pl" class="d-inline">
574                                             <input type="hidden" name="op" value="edit_form" />
575                                             <input type="hidden" name="referer" value="view" />
576                                             <input type="hidden" name="category" value="[% shelf.category | html %]" />
577                                             <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
578                                             <button type="submit" class="btn btn-link editshelf"><i class="fa fa-fw fa-pencil-square-o" aria-hidden="true"></i> Edit list</button>
579                                         </form>
580
581                                         [% PROCESS delete_shelf context = "details" %]
582
583                                     [% END %]
584                                 </div> <!-- / .list-actions -->
585                             </div> <!-- / #toolbar -->
586
587                             <div class="alert alert-info">
588                                 This list is empty.
589                                 [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
590                                     You can add to your lists from the results of any <a href="opac-main.pl">search</a>.
591                                 [% END %]
592                             </div>
593
594                             [% IF can_manage_shelf %]
595                                 <form method="post" action="opac-shelves.pl">
596                                     <input type="hidden" name="op" value="delete" />
597                                     <input type="hidden" name="referer" value="list" />
598                                     <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]"/>
599                                     <input type="submit" class="btn btn-danger" value="Delete this list" onclick="return confirmDelete(MSG_CONFIRM_DELETE_LIST)" />
600                                 </form>
601                             [% END %]
602                         [% END # / IF itemsloop %]
603                     [% END # /IF shelf AND op == 'view' %]
604
605                     [% IF op == 'add_form' OR op == 'edit_form' %]
606                         <form method="post" action="/cgi-bin/koha/opac-shelves.pl">
607                             <fieldset class="rows">
608                                 [% IF op == 'add_form' %]
609                                     <div id="addshelf">
610                                     <legend>Create a new list</legend>
611                                     <input type="hidden" name="op" value="add" />
612                                 [% ELSE %]
613                                     <legend>Editing <em>[% shelf.shelfname | html %]</em></legend>
614                                     <input type="hidden" name="op" value="edit" />
615                                     <input type="hidden" name="referer" value="[% referer | html %]" />
616                                     <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
617                                 [% END %]
618                                 <input type="hidden" name="owner" id="owner" value="[% loggedinusernumber | html %]" />
619                                 <ol>
620                                     <li>
621                                         <label class="required" for="shelfname">List name: </label>
622                                         <input type="text" id="shelfname" name="shelfname" maxlength="255" value="[% shelf.shelfname | html %]" required="required" class="focus required"/>
623                                         <span class="required">Required</span></li>
624                                     <li>
625                                         <label for="sortfield" >Sort this list by: </label>
626                                         <select name="sortfield" id="sortfield">
627                                             [% IF shelf.sortfield == "title" %]
628                                                 <option value="title" selected="selected">Title</option>
629                                             [% ELSE %]
630                                                 <option value="title">Title</option>
631                                             [% END %]
632                                             [% IF shelf.sortfield == "author" %]
633                                                 <option value="author" selected="selected">Author</option>
634                                             [% ELSE %]
635                                                 <option value="author">Author</option>
636                                             [% END %]
637                                             [% IF shelf.sortfield == "copyrightdate" %]
638                                                 <option value="copyrightdate" selected="selected">Year</option>
639                                             [% ELSE %]
640                                                 <option value="copyrightdate">Year</option>
641                                             [% END %]
642                                             [% IF shelf.sortfield == "itemcallnumber" %]
643                                                 <option value="itemcallnumber" selected="selected">Call number</option>
644                                             [% ELSE %]
645                                                 <option value="itemcallnumber">Call number</option>
646                                             [% END %]
647                                             [% IF shelf.sortfield == "dateadded" %]
648                                                 <option value="dateadded" selected="selected">Date added</option>
649                                             [% ELSE %]
650                                                 <option value="dateadded">Date added</option>
651                                             [% END %]
652                                         </select>
653                                     </li>
654                                     [% IF Koha.Preference('OpacAllowPublicListCreation') OR category == PUBLIC %]
655                                         <li>
656                                             <label for="category">Category:</label>
657                                             <select name="category" id="category" onchange="AdjustRemark()">
658                                                 [% IF shelf.is_private %]
659                                                         <option value="1" selected="selected">Private</option>
660                                                     [% ELSE %]
661                                                         <option value="1">Private</option>
662                                                     [% END %]
663                                                 [% IF shelf.is_public %]
664                                                     <option value="2" selected="selected">Public</option>
665                                                 [% ELSE %]
666                                                     <option value="2">Public</option>
667                                                 [% END %]
668                                             </select>
669                                             [% IF shelf.is_public AND NOT Koha.Preference('OpacAllowPublicListCreation') %]
670                                                 <span class="hint alert alert-info">The library has disabled the ability for patrons to create new public lists.  If you make your list private, you will not be able to make it public again.</span>
671                                             [% END %]
672                                         </li>
673                                     [% END %]
674                                     [% INCLUDE list_permissions %]
675                                 </ol>
676                                 [% UNLESS Koha.Preference('OpacAllowPublicListCreation') OR category == PUBLIC %]
677                                     <input type="hidden" name="category" value="[% PRIVATE | html %]" />
678                                 [% END %]
679                             </fieldset> <!-- /.rows -->
680
681                             <fieldset class="action">
682                                 <input type="submit" value="Save" class="btn btn-primary" />
683                                 [% IF referer == 'view' %]
684                                     <a href="/cgi-bin/koha/opac-shelves.pl?op=view&amp;shelfnumber=[% shelf.shelfnumber | uri %]" class="cancel">Cancel</a>
685                                 [% ELSE %]
686                                     <a href="/cgi-bin/koha/opac-shelves.pl?op=list&amp;category=[% PRIVATE | uri %]" class="cancel">Cancel</a>
687                                 [% END %]
688                             </fieldset>
689                         </form>
690
691                     [% ELSIF op == 'list' %]
692                         <h2>Lists</h2>
693                         <div class="toptabs ui-tabs ui-widget ui-widget-content ui-corner-all">
694                             <ul class="ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all">
695                                 [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
696                                     [% IF category == PRIVATE %]
697                                         <li id="privateshelves_tab" class="ui-state-default ui-corner-top ui-tabs-active ui-state-active"><a class="ui-tabs-anchor" href="/cgi-bin/koha/opac-shelves.pl?op=listamp;category=[% PRIVATE | html %]">Your lists</a></li>
698                                     [% ELSE %]
699                                         <li id="privateshelves_tab" class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="/cgi-bin/koha/opac-shelves.pl?op=list&amp;category=[% PRIVATE | html %]">Your lists</a></li>
700                                     [% END %]
701                                 [% END %]
702                                 [% IF category == PUBLIC %]
703                                     <li id="publicshelves_tab" class="ui-state-default ui-corner-top ui-tabs-active ui-state-active"><a class="ui-tabs-anchor" href="/cgi-bin/koha/opac-shelves.pl?op=list&amp;category=[% PUBLIC | html %]">Public lists</a></li>
704                                 [% ELSE %]
705                                     <li id="publicshelves_tab" class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="/cgi-bin/koha/opac-shelves.pl?op=list&amp;category=[% PUBLIC | html %]">Public lists</a></li>
706                                 [% END %]
707                             </ul>
708
709                             [% IF category == PRIVATE %]
710                                 <div id="privateshelves" class="ui-tabs-panel ui-widget-content ui-corner-bottom" style="display:block;">
711                             [% ELSE %]
712                                 <div id="publicshelves" class="ui-tabs-panel ui-widget-content ui-corner-bottom" style="display:block;">
713                             [% END %]
714
715                             [% IF category == PRIVATE || Koha.Preference('OpacAllowPublicListCreation') %]
716                                 [% IF loggedinusername %]
717                                     <div id="toolbar" class="toolbar"><a class="btn btn-link newshelf" href="/cgi-bin/koha/opac-shelves.pl?op=add_form"><i class="fa fa-plus" aria-hidden="true"></i> New list</a></div>
718                                 [% ELSE %]
719                                     [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
720                                         <div class="alert alert-info"><a href="/cgi-bin/koha/opac-shelves.pl?op=add_form">Log in to create a new list</a></div>
721                                     [% END %]
722                                 [% END %]
723                             [% END %]
724
725                             [% IF shelves.count %]
726                                 <table class="table">
727                                     <thead>
728                                         <tr>
729                                             <th>List name</th>
730                                             <th>Contents</th>
731                                             <th>Type</th>
732                                             <th>&nbsp;</th>
733                                         </tr>
734                                     </thead>
735                                     <tbody>
736                                         [% FOREACH s IN shelves %]
737                                             [% SET contents = s.get_contents %]
738                                             <tr>
739                                                 <td><a href="/cgi-bin/koha/opac-shelves.pl?op=view&amp;shelfnumber=[% s.shelfnumber | uri %]">[% s.shelfname | html %]</a></td>
740                                                 <td>[% IF contents.count %][% contents.count | html %] [% IF contents.count == 1 %]item[% ELSE %]items[% END %][% ELSE %]Empty[% END %]</td>
741                                                 <td>
742                                                     [% IF s.is_private %]
743                                                         [% IF s.is_shared %]Shared[% ELSE %]Private[% END %]
744                                                     [% ELSE %]
745                                                         Public
746                                                     [% END %]
747                                                 </td>
748                                                 <td>
749                                                     [% IF s.can_be_managed( loggedinusernumber ) %]
750                                                         <form action="/cgi-bin/koha/opac-shelves.pl" method="get" class="d-inline">
751                                                             <input type="hidden" name="shelfnumber" value="[% s.shelfnumber | html %]" />
752                                                             <input type="hidden" name="category" value="[% s.category | html %]" />
753                                                             <input type="hidden" name="op" value="edit_form" />
754                                                             <input type="hidden" name="referer" value="list" />
755                                                             <button type="submit" class="btn btn-link editshelf"><i class="fa fa-pencil-square-o" aria-hidden="true"></i> Edit</button>
756                                                         </form>
757                                                     [% END %]
758                                                     [% IF s.can_be_deleted( loggedinusernumber ) %]
759                                                         [% PROCESS delete_shelf shelf = s context = "list" %]
760                                                     [% END %]
761                                                     [% IF s.is_private AND s.can_be_managed( loggedinusernumber ) AND Koha.Preference('OpacAllowSharingPrivateLists') %]
762                                                         <a href="/cgi-bin/koha/opac-shareshelf.pl?op=invite&shelfnumber=[% s.shelfnumber | uri %]" class="sharelist btn btn-link"><i class="fa fa-share" aria-hidden="true"></i> Share</a>
763                                                     [% END %]
764                                                     [% IF s.is_shared_with( loggedinusernumber ) %]
765                                                         <form action="opac-shelves.pl" method="post" id="unshare[% s.shelfnumber | html %]" class="d-inline">
766                                                             <input type="hidden" name="op" value="remove_share" />
767                                                             <input type="hidden" name="referer" value="list" />
768                                                             <input type='hidden' name='category' value='[% category | html %]' />
769                                                             <input type="hidden" name="shelfnumber" value="[% s.shelfnumber | html %]" />
770                                                             <button type="submit" class="btn btn-link remove remove_share"
771                                                             data-shelfname="[% s.shelfname | html %]" data-shelfnumber="[% s.shelfnumber | html %]"><i class="fa fa-remove" aria-hidden="true"></i> Remove share</button>
772                                                         </form>
773                                                     [% END %]&nbsp;
774                                                 </td>
775                                             </tr>
776                                         [% END %]
777                                     </tbody>
778                                 </table> <!-- /.table -->
779                                 <div class="pages">[% pagination_bar | $raw %]</div>
780                             [% ELSE %]
781                                 [% IF category == PUBLIC %]
782                                     <p>No public lists.</p>
783                                 [% ELSIF loggedinusernumber %]
784                                     <p>No private lists.</p>
785                                 [% END %]
786                             [% END # /IF shelves.count %]
787                         </div> [%# <div class="toptabs ui-tabs ui-widget ui-widget-content ui-corner-all"> %]
788                     [% ELSIF NOT loggedinusernumber %]
789                         [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
790                             <div class="alert alert-info"><a href="/cgi-bin/koha/opac-shelves.pl?op=add_form">Log in to create a new list</a></div>
791                         [% END %]
792                     [% END  # IF op == 'add_form' OR op == 'edit_form' %]
793                 </div> <!-- / #usershelves -->
794             </div> <!-- / .col-lg-10/12 -->
795         </div> <!-- / .row -->
796     </div> <!-- / .container-fluid -->
797 </div> <!-- / .main -->
798
799 <form method="post" id="download_list" action="/cgi-bin/koha/opac-downloadshelf.pl">
800     <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
801     <input type="hidden" name="format" id="download_format" value="" />
802 </form>
803
804 <!-- DEBUG -->
805     <div id="debug"></div>
806 <!-- /DEBUG -->
807
808 [% INCLUDE 'opac-bottom.inc' %]
809 [% BLOCK jsinclude %]
810 [% Asset.js("lib/hc-sticky.js") | $raw %]
811 [% IF OpenLibraryCovers || OpenLibrarySearch %]
812     [% Asset.js("js/openlibrary.js") | $raw %]
813 [% END %]
814 <script>
815 var MSG_REMOVE_FROM_LIST = _("Are you sure you want to remove these items from the list?");
816 var MSG_REMOVE_ONE_FROM_LIST = _("Are you sure you want to remove this item from the list?");
817 var MSG_CONFIRM_DELETE_LIST = _("Are you sure you want to delete this list?");
818 var MSG_CONFIRM_REMOVE_SHARE = _("Are you sure you want to remove this share?");
819
820 [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) && ( Koha.Preference( 'RequestOnOpac' ) == 1 ) ) %]
821     function holdSelections() {
822         var checkedBoxes = $("input:checkbox:checked");
823         if ($(checkedBoxes).size() == 0) {
824             alert( __("No item was selected") );
825         } else {
826             var bibs = "";
827             $(checkedBoxes).each(function(){
828                 bibs += $(this).val() + "/";
829             });
830             document.location = "/cgi-bin/koha/opac-reserve.pl?biblionumbers="+bibs;
831         }
832     }
833 [% END %]
834 [% IF ( TagsInputEnabled && loggedinusername ) %]
835     function tagSelected() {
836         var checkedBoxes = $("input:checkbox:checked");
837         if ($(checkedBoxes).size()) {
838             $("#tagsel_tag").hide();
839             $(".tag_hides").hide();
840             $("#tagsel_form").show();
841         } else {
842             alert( __("No item was selected") );
843         }
844     }
845
846     function tagCanceled() {
847         $("#tagsel_form").hide();
848         $("#tagsel_tag").show();
849         $(".tag_hides").show();
850         $("#tagsel_new").val("");
851         $(".tagstatus").empty().hide();
852     }
853
854     function tagAdded() {
855         var checkedBoxes = $("input:checkbox:checked");
856         if (!$(checkedBoxes).size()) {
857             alert( __("No item was selected") );
858             return false;
859         }
860
861         var tag = $("#tagsel_new").val();
862         if (!tag || (tag == "")) {
863             alert(MSG_NO_TAG_SPECIFIED);
864             return false;
865         }
866
867         var bibs = [];
868         for (var i = 0; i < $(checkedBoxes).size(); i++) {
869             var box = $(checkedBoxes).get(i);
870             bibs[i] = $(box).val();
871         }
872
873         KOHA.Tags.add_multitags_button(bibs, tag);
874         return false;
875     }
876 [% END %]
877
878 function enableCheckboxActions(){
879     // Enable/disable controls if checkboxes are checked
880     var checkedBoxes = $(".cb:checked");
881     if ($(checkedBoxes).size()) {
882       $("#selections").html(_("With selected titles: "));
883       $("#selections-toolbar .links a").removeClass("disabled");
884     } else {
885       $("#selections").html(_("Select titles to: "));
886       $("#selections-toolbar .links a").addClass("disabled");
887     }
888 }
889
890 $(function() {
891     [% IF Koha.Preference( 'opacbookbag' ) == 1 %]$(".addtocart,.cartRemove").removeClass("hidden");[% END %]
892     $("span.clearall").html("<a id=\"CheckNone\" class=\"btn btn-link btn-sm\" href=\"#\">"+_("Clear all")+"<\/a>");
893     $("span.checkall").html("<a id=\"CheckAll\" class=\"btn btn-link btn-sm\" href=\"#\">"+_("Select all")+"<\/a>");
894     $("a.print").show();
895
896     [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) && ( Koha.Preference( 'RequestOnOpac' ) == 1 ) ) %]
897         $("#placehold").html("<a href=\"#\" class=\"btn btn-link hold tag_hides btn-disabled\"><i class=\"fa fa-fw fa-bookmark\" aria-hidden=\"true\"></i> "+_("Place hold")+"<\/a>");
898         $("#selections-toolbar a.hold").click(function(){
899             holdSelections();
900             return false;
901         });
902     [% END %]
903
904     $("#CheckAll").on("click",function(e){
905         e.preventDefault();
906         $(".cb").prop("checked", true);
907         enableCheckboxActions();
908     });
909     $("#CheckNone").on("click",function(e){
910         e.preventDefault();
911         $(".cb").prop("checked", false);
912         enableCheckboxActions();
913     });
914
915     $(".cb").click(function(){
916       enableCheckboxActions();
917     });
918     enableCheckboxActions();
919
920     [% IF ( TagsInputEnabled && loggedinusername ) %]
921         var tagAdd = $(".tag_add");
922         tagAdd.removeClass("hidden");
923         $("#tagsel_tag").click(function(){
924             tagSelected();
925             return false;
926         });
927         $("#tagsel_cancel").click(function(){
928             tagCanceled();
929             return false;
930         });
931         $("#tagsel_button").click(function(){
932             tagAdded();
933             return false;
934         });
935
936         tagAdd.click(function(){
937             var thisid = $(this).attr("id");
938             thisid = thisid.replace("tag_add","");
939             $(this).hide();
940             $("#tagform"+thisid).show();
941             $("#newtag"+thisid).focus();
942             $("#newtag"+thisid+"_status").empty().hide();
943             return false;
944         });
945         $(".cancel_tag_add").click(function(){
946             var thisid = $(this).attr("id");
947             thisid = thisid.replace("cancel","");
948             $("#tagform"+thisid).hide();
949             $("#tag_add"+thisid).show();
950             $("#newtag"+thisid).val("");
951             $("#newtag"+thisid+"_status").empty().hide();
952             return false;
953         });
954         $(".tagbutton").click(function(){
955           var thisid = $(this).attr("title");
956           var tag = $("#newtag"+thisid).val();
957           if (!tag || (tag == "")) {
958               alert(MSG_NO_TAG_SPECIFIED);
959               return false;
960           }
961           KOHA.Tags.add_tag_button(thisid, tag);
962           return false;
963         });
964     [% END %]
965
966     [% IF loggedinusername && can_remove_biblios %]
967         $(".removefromlist").on("click", function(e){
968             return confirmDelete(MSG_REMOVE_ONE_FROM_LIST);
969         });
970
971         $("#myform").submit(function(){
972             var checkedBoxes = $(".cb:checked");
973             var numchecked = $(checkedBoxes).size();
974             if (numchecked) {
975                 if( numchecked > 1 ){
976                     return confirmDelete(MSG_REMOVE_FROM_LIST);
977                 } else {
978                     return confirmDelete(MSG_REMOVE_ONE_FROM_LIST);
979                 }
980             } else {
981                 alert( __("No item was selected") );
982                 return false;
983             }
984         });
985         $("#removeitems").html("<a href=\"#\" class=\"btn btn-link disabled removeitems tag_hides\"><i class=\"fa fa-fw fa-remove\" aria-hidden=\"true\"></i> "+_("Remove from list")+"</a>")
986         .click(function(){
987             $("#myform").submit();
988             return false;
989         });
990     [% END %]
991     [% IF OpenLibraryCovers %]KOHA.OpenLibrary.GetCoverFromIsbn();[% END %]
992     [% IF OPACLocalCoverImages %]KOHA.LocalCover.GetCoverFromBibnumber(false);[% END %]
993     [% IF ( GoogleJackets ) %]KOHA.Google.GetCoverFromIsbn();[% END %]
994     [% IF ( Koha.Preference('OpacCoce') && Koha.Preference('CoceProviders') ) %]
995         KOHA.coce.getURL('[% Koha.Preference('CoceHost') | html %]', '[% Koha.Preference('CoceProviders') | html %]');
996     [% END %]
997
998     [% IF print %]
999         window.print();
1000         window.onafterprint = function () {
1001             window.close();
1002         }
1003         setTimeout('window.close()', 1000); // Hack for Chrome < 63
1004     [% END %]
1005
1006     AdjustRemark();
1007
1008     Sticky = $("#floating");
1009     Sticky.hcSticky({
1010         stickTo: "#usershelves",
1011         stickyClass: "floating"
1012     });
1013
1014     [% IF itemsloop %]
1015         sortMenu( $("#sorting-form") );
1016
1017         $("#sortfield").on("change", function(){
1018             $('#sorting-form').submit();
1019         });
1020     [% END %]
1021
1022     $(".deleteshelf").on("click", function(e){
1023         e.preventDefault();
1024         var shelf_name = $(this).data("shelfname");
1025         var shelf_number = $(this).data("shelfnumber");
1026         var is_shared = $(this).data("shared");
1027         var count = $(this).data("count");
1028         var message = "<p><em>" + shelf_name + "</em></p>";
1029         if( count ){
1030             message += "<p>" + _("Items on this list:") + " <strong>" + count + "</strong></p>";
1031         }
1032         if( is_shared ){
1033             message += "<p>" + _("This list is shared. Other users will lose access to it.") + "</p>";
1034         }
1035         confirmModal( message, _("Are you sure you want to delete this list?"), _("Yes, delete"), _("No, do not delete"), function( result ){
1036                 if( result ){
1037                     $("#deleteshelf" + shelf_number ).submit();
1038                 }
1039             }
1040         );
1041     });
1042
1043     $(".remove_share").on("click", function(e){
1044         e.preventDefault();
1045         var shelf_name = $(this).data("shelfname");
1046         var shelf_number = $(this).data("shelfnumber");
1047         confirmModal( shelf_name, _("Are you sure you want to remove sharing? You will no longer have access to the list."), _("Yes, remove sharing"), _("No, do not remove sharing"), function( result ){
1048                 if( result ){
1049                     $("#unshare" + shelf_number ).submit();
1050                 }
1051             }
1052         );
1053     });
1054
1055     $(".download-list").on("click", function(e){
1056         e.preventDefault();
1057         var format = $(this).data("format");
1058         $("#download_format").val( format );
1059         $("#download_list").submit();
1060     });
1061
1062 }); // document.ready
1063
1064 function sortMenu( sorting_form ){
1065     var shelfnumber = sorting_form.find("input[name='shelfnumber']").val();
1066     var sort_link = "/cgi-bin/koha/opac-shelves.pl?op=view&amp;shelfnumber=" + shelfnumber + "&sortfield=";
1067     var menu = "<div class=\"btn-group dropdown\"><button type=\"button\" class=\"btn btn-link dropdown-toggle\" data-toggle=\"dropdown\" id=\"sortmenu\" aria-haspopup=\"true\" aria-expanded=\"false\"><i class=\"fa fa-sort\" aria-hidden=\"true\"></i> " + _("Sort") + "</span></button><div class=\"dropdown-menu dropdown-menu-right\" aria-labelledby=\"sortmenu\">";
1068     $("#sortfield").children().each(function(){
1069         if( $(this)[0].tagName.toUpperCase() == "OPTION" ){
1070             menu += "<a class=\"dropdown-item\" href=\"" + sort_link + $(this).val() + "\">" + $(this).text() + "</a>";
1071         } else if( $(this)[0].tagName.toUpperCase() == "OPTGROUP" ){
1072             menu += "<span class=\"dropdown-header\">" + $(this).attr("label") + "</span>";
1073             $(this).children().each(function(){
1074                 if( $(this)[0].tagName.toUpperCase() == "OPTION" ){
1075                     menu += "<a class=\"dropdown-item\" href=\"" + sort_link + $(this).val() + "\">" + $(this).text() + "</a>";
1076                 }
1077             });
1078         }
1079     });
1080     menu += "</div>";
1081     $(".list-actions").append( menu );
1082     sorting_form.remove();
1083 }
1084
1085 function AdjustRemark() {
1086     var category;
1087     if( $("#category").length > 0 ) {
1088         category = $("#category").val();
1089     } else {
1090         category = [% category | html %];
1091     }
1092     var perms = $("#allow_changes_from").val();
1093
1094     if( perms < 2 ) {
1095         $("#anyone_remark").hide();
1096     } else if( category==1 ) {
1097         // If we move to Private (without shares), show Anyone remark
1098         // Note: the number of shares is not tested real-time
1099         [% IF !shelf.is_shared %]
1100             $("#anyone_remark").show();
1101         [% ELSE %]
1102             $("#anyone_remark").hide();
1103         [% END %]
1104     } else { // category==2
1105         $("#anyone_remark").hide();
1106     }
1107 }
1108 </script>
1109 [% END %]