Bug 26145: Add the "Cover image" column to the table settings
[srvgit] / koha-tmpl / intranet-tmpl / prog / en / modules / catalogue / detail.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE KohaDates %]
5 [% USE AuthorisedValues %]
6 [% USE Branches %]
7 [% USE Biblio %]
8 [% USE TablesSettings %]
9 [% PROCESS 'i18n.inc' %]
10 [% SET AdlibrisEnabled = Koha.Preference('AdlibrisCoversEnabled') %]
11 [% SET AdlibrisURL = Koha.Preference('AdlibrisCoversURL') %]
12
13 [% IF Koha.Preference('AmazonAssocTag') %]
14     [% AmazonAssocTag = '?tag=' _ Koha.Preference('AmazonAssocTag') %]
15 [% ELSE %]
16     [% AmazonAssocTag = '' %]
17 [% END %]
18
19 [% ShowCourseReserves = 0 | html %]
20 [% IF UseCourseReserves %]
21     [% FOREACH item IN itemloop %]
22        [% IF item.course_reserves %]
23            [% FOREACH r IN item.course_reserves %]
24                [% IF r.course.enabled == 'yes' %]
25                    [% ShowCourseReserves = 1 | html %]
26                [% END %]
27            [% END %]
28         [% END %]
29     [% END %]
30 [% END %]
31
32 [% SET footerjs = 1 %]
33 [% INCLUDE 'doc-head-open.inc' %]
34 <title>Koha &rsaquo; Catalog &rsaquo;
35   [% IF ( unknownbiblionumber ) %]
36     Unknown record
37   [% ELSE %]
38     Details for [% INCLUDE 'biblio-title-head.inc' %]
39   [% END %]
40 </title>
41 [% INCLUDE 'doc-head-close.inc' %]
42 </head>
43
44 <body id="catalog_detail" class="catalog">
45
46 [% INCLUDE 'header.inc' %]
47 [% INCLUDE 'cat-search.inc' %]
48
49 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/catalogue/search.pl">Catalog</a>  &rsaquo;
50   [% IF ( unknownbiblionumber ) %]
51     Unknown record
52   [% ELSE %]
53     [% INCLUDE 'biblio-title.inc' link = 1 %] &rsaquo; Details
54   [% END %]
55 </div>
56
57 <div class="main container-fluid">
58     <div class="row">
59         <div class="col-sm-10 col-sm-push-2">
60             <main>
61                 <div class="row">
62
63 [% IF ( unknownbiblionumber ) %]
64   <div class="dialog message">The record you requested does not exist ([% biblionumber | html %]).</div>
65 [% ELSE %]
66
67 [% IntranetCoce    = Koha.Preference('IntranetCoce') %]
68 [% CoceProviders   = Koha.Preference('CoceProviders') %]
69 [% CoceHost        = Koha.Preference('CoceHost') %]
70
71 [% INCLUDE 'cat-toolbar.inc' %]
72     [% IF decoding_error %]
73         <div>
74            <span class="biberror">
75             There is an error with this bibliographic record, the view may be degraded.</span>
76             <span class="error"><br/> Error: [% decoding_error | html %]</span>
77         </div>
78     [% END %]
79     [% IF ( ocoins ) %]
80         <!-- COinS / OpenURL -->
81         <span class="Z3988" title="[% ocoins | html %]"></span>
82     [% END %]
83
84     [% IF ( AmazonCoverImages  || LocalCoverImages || AdlibrisEnabled || IntranetCoce || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %]
85         [% IF ( XSLTDetailsDisplay ) %]
86             <div id="catalogue_detail_biblio" class="col-xs-9">
87         [% ELSE %]
88             <div id="catalogue_detail_biblio" class="col-xs-9">
89         [% END %]
90     [% ELSE %]
91         <div id="catalogue_detail_biblio" class="col-xs-12">
92     [% END %]
93
94         [% XSLTBloc | $raw %]
95
96         [% IF shelves.count %]
97             <span class="results_summary"><span class="label">Lists that include this title: </span>
98             [% FOREACH s IN shelves %]
99                 <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&amp;shelfnumber=[% s.shelfnumber | uri %]">[% s.shelfname | html %]</a>
100                 [% IF ( loop.last ) %][% ELSE %]|[% END %]
101             [% END %]
102             </span>
103         [% END %]
104         [% IF ( TagsEnabled &&  TagsShowOnDetail &&  TagLoop ) %]
105                 <span class="results_summary"><span class="label">Tags:</span>
106                     [% FOREACH TagLoo IN TagLoop %]
107                         [% IF ( CAN_user_tools_moderate_tags ) %]
108                         <a href="/cgi-bin/koha/tags/list.pl?tag=[% TagLoo.term |url %]">[% TagLoo.term | html %]</a>
109                         [% ELSE %]
110                         [% TagLoo.term | html %]
111                         [% END %]
112                         <span class="weight">([% TagLoo.weight_total | html %])</span>[% IF ( loop.last ) %][% ELSE %], [% END %]
113                     [% END %]
114                     </span>
115         [% END %]
116         <span id="catalogue_detail_marc_preview" class="results_summary"><span class="label">MARC preview:</span> <a href="/cgi-bin/koha/catalogue/showmarc.pl?id=[% biblionumber | uri %]&amp;viewas=html" title="MARC" class="previewMARC">Show</a></span>
117         [% IF !item_level_itypes ||  Koha.Preference("BiblioItemtypeInfo") %]
118            <span class="results_summary itemtype"><span class="label">Itemtype:</span>
119           [% IF ( !noItemTypeImages && imageurl ) %]
120               <img src="[% imageurl | html %]" alt="" />
121           [% END %]
122           [% IF ( description ) %]
123             [% description | html %]
124           [% ELSE %]
125             [% itemtype | html %]
126           [% END %]
127           </span>
128         [% END %]
129
130         [% IF ( holdcount ) %]
131             <span class="results_summary">
132                 <span class="label">Holds:</span>
133                 <span class="number_box">
134                     [% IF CAN_user_reserveforothers_place_holds %]
135                         <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblionumber | uri %]">[% holdcount | html %]</a>
136                     [% ELSE %]
137                         <span>[% holdcount | html %]</span>
138                     [% END %]
139                 </span>
140             </span>
141         [% END %]
142
143         [% IF illrequests.count %]
144             <span class="results_summary">
145                 <span class="label">ILL requests:</span>
146                 [% IF CAN_user_ill %]
147                     [% FOREACH ill IN illrequests %]
148                         <a href="/cgi-bin/koha/ill/ill-requests.pl?method=illview&illrequest_id=[% ill.illrequest_id | uri %]">Request [% ill.illrequest_id | html %]</a>[% IF ! loop.last %], [% END %]
149                     [% END %]
150                 [% ELSE %]
151                     [% FOREACH ill IN illrequests %]
152                         <span>Request [% ill.illrequest_id | html %]</span>[% IF ! loop.last %], [% END %]
153                     [% END %]
154                 [% END %]
155             </span>
156         [% END %]
157
158         [% IF ( article_requests_count = Biblio.ArticleRequestsActiveCount( biblionumber ) ) %]
159             <span class="results_summary">
160                 <span class="label">Article requests:</span>
161                 <span class="number_box">
162                     <a href="/cgi-bin/koha/circ/request-article.pl?biblionumber=[% biblionumber | uri %]">[% article_requests_count | html %]</a>
163                 </span>
164             </span>
165         [% END %]
166
167         [% IF ( AmazonCoverImages  || LocalCoverImages || AdlibrisEnabled || IntranetCoce || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %]
168             </div>
169             <div class="col-xs-3 bookcoverimg">
170                 <div id="biblio-cover-slider" class="cover-slider">
171                     [% IF ( LocalCoverImages ) %]
172                         [% IF localimages.count %]
173                             [% FOREACH image IN localimages %]
174                                 <div class="cover-image local-coverimg">
175                                     <a href="/cgi-bin/koha/catalogue/imageviewer.pl?biblionumber=[% biblionumber | uri %]&amp;imagenumber=[% image.imagenumber | uri %]">
176                                         <img src="/cgi-bin/koha/catalogue/image.pl?thumbnail=1&amp;imagenumber=[% image.imagenumber | uri %]" alt="Local cover image" />
177                                     </a>
178                                     <div class="hint">Local cover image</div>
179                                 </div>
180                             [% END %]
181                         [% END %]
182                     [% END %]
183
184                     [% IF ( AdlibrisEnabled && normalized_isbn ) %]
185                         <div class="cover-image" id="adlibris-coverimg">
186                             <a href="[% AdlibrisURL | url %]?isbn=[% normalized_isbn | uri %]">
187                                 <img src="[% AdlibrisURL | url %]?isbn=[% normalized_isbn | uri %]" class="adlibris-cover-big" alt="Adlibris cover image" />
188                             </a>
189                             <div class="hint">Image from Adlibris</div>
190                         </div>
191                     [% END %]
192
193                     [% IF ( AmazonCoverImages && normalized_isbn) %]
194                         <div class="cover-image" id="amazon-bookcoverimg">
195                             <a href="http://www.amazon[% AmazonTld | uri %]/gp/reader/[% normalized_isbn | uri %][% AmazonAssocTag | uri %]#reader-link">
196                                 <img src="https://images-na.ssl-images-amazon.com/images/P/[% normalized_isbn | html %].01.MZZZZZZZ.jpg" alt="Amazon cover image" />
197                             </a>
198                             <div class="hint">Image from Amazon.com</div>
199                         </div>
200                     [% END %]
201
202                     [% IF ( IntranetCoce && CoceProviders && normalized_isbn ) %]
203                         [% coce_id = normalized_ean || normalized_isbn %]
204                         <div class="cover-image" id="coce-coverimg">
205                             [% IF ( coce_id ) %]
206                                 <span title="[% biblionumber | url %]" class="[% coce_id | html %]" id="coce-thumbnail-preview"></span>
207                             [% ELSE %]
208                                 <span class="no-image">No cover image available</span>
209                             [% END %]
210                             <div class="hint">Image from Coce</div>
211                         </div>
212                     [% END %]
213
214                     [% IF Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL') %]
215                         <div class="cover-image" id="custom-coverimg">
216                             <a class="custom_cover_image" href="[% biblio.custom_cover_image_url | url %]">
217                                 <img id="custom-img" alt="Custom cover image" src="[% biblio.custom_cover_image_url | url %]" />
218                             </a>
219                             <div class="hint">Custom cover image</div>
220                         </div>
221                     [% END %]
222                 </div> <!-- /.cover-slider -->
223             </div> <!-- /.bookcoverimg.col-xs-3 -->
224         [% ELSE %]
225         </div> <!-- /.col-xs-* -->
226         [% END # /IF ( AmazonCoverImages, etc ) %]
227 </div>
228 <div id="bibliodetails" class="toptabs">
229
230 <ul>
231     [% IF (SeparateHoldings) %]
232         <li>
233             <a href="#holdings">[% Branches.GetLoggedInBranchname | html %] holdings ([% itemloop.size() || 0 | html %])</a>
234         </li>
235         <li>
236             <a href="#otherholdings">Other holdings ([% otheritemloop.size() || 0 | html %])</a>
237         </li>
238     [% ELSE %]
239         <li>
240             <a href="#holdings">Holdings ([% itemloop.size() || 0 | html %])</a>
241         </li>
242     [% END %]
243 [% IF ( MARCNOTES || notes ) %]<li><a href="#description">Descriptions ([% ( MARCNOTES.size || 1 ) | html %])</a></li>[% END %]
244 [% IF ( subscriptionsnumber ) %]<li><a href="#subscriptions">Subscriptions</a></li>[% END %]
245 [% IF Koha.Preference('AcquisitionDetails') %]<li><a href="#acq_details">Acquisition details</a></li>[% END %]
246 [% IF suggestions.count %]<li><a href="#suggestion_details">Suggestion details</a></li>[% END %]
247 [% IF ( FRBRizeEditions ) %][% IF ( XISBNS ) %]<li><a href="#editions">Editions</a></li>[% END %][% END %]
248 [% IF ( LocalCoverImages ) %]
249     [% IF ( localimages.count || CAN_user_tools_upload_local_cover_images ) %]
250         <li>
251             <a href="#images">Images ([% localimages.count || 0 | html %])</a>
252         </li>
253     [% END %]
254 [% END %]
255 [% IF HTML5MediaEnabled && HTML5MediaSets.size %]<li id="media_tab"><a href="#html5media">Play media</a></li>[% END %]
256 [% IF ( Koha.Preference('NovelistSelectStaffEnabled') && Koha.Preference('NovelistSelectStaffProfile') && Koha.Preference('NovelistSelectStaffView') == 'tab' ) %]
257     <li class="NovelistSelect" style="display:none;"><a href="#NovelistSelect">NoveList Select</a></li>
258 [% END %]
259 [% FOREACH tab IN tabs %]
260     <li><a href="#[% tab.id | uri %]">[% tab.title | html %]</a></li>
261 [% END %]
262 </ul>
263
264 [% items_table_block_iter = 0 %]
265 [% BLOCK items_table %]
266     [% items_table_block_iter = items_table_block_iter + 1 %]
267     <div class="[% tab | html %]_table_table_controls">
268         [% IF (StaffDetailItemSelection) %]
269             | <a href="#" class="SelectAll" data-tab="[% tab | html %]"><i class="fa fa-check"></i> Select all</a> |
270             <a href="#" class="ClearAll" data-tab="[% tab | html %]"><i class="fa fa-remove"></i> Clear all</a>
271             <span class="itemselection_actions">
272               | Actions:
273               [% IF CAN_user_tools_items_batchdel %]
274                 <a class="itemselection_action_delete"><i class="fa fa-trash"></i> Delete selected items</a>
275               [% END %]
276               [% IF CAN_user_tools_items_batchmod %]
277                 <a class="itemselection_action_modify"><i class="fa fa-pencil"></i> Modify selected items</a>
278               [% END %]
279             </span>
280         [% END %]
281     </div>
282     <table class="items_table" id="[% tab | html %]_table">
283         <thead>
284             <tr>
285                 [% IF (StaffDetailItemSelection) %]<th id="[% tab | html %]_checkbox" data-colname="[% tab | html %]_checkbox" class="NoSort"></th>[% END %]
286                 [% IF Koha.Preference('LocalCoverImages') && ( tab == 'holdings' && itemloop_has_images || tab == 'otherholdings' && otheritemloop_has_images ) %]
287                     <th id="[% tab | html %]_cover_image" data-colname="[% tab | html %]_cover_image">Cover image</th>
288                 [% END %]
289                 [% IF ( item_level_itypes ) %]<th id="[% tab | html %]_itype" data-colname="[% tab | html %]_itype">Item type</th>[% END %]
290                 <th id="[% tab | html %]_holdingbranch" data-colname="[% tab | html %]_holdingbranch">Current library</th>
291                 <th id="[% tab | html %]_homebranch" data-colname="[% tab | html %]_homebranch">Home library</th>
292                 [% IF ( itemdata_ccode ) %]<th id="[% tab | html %]_ccode" data-colname="[% tab | html %]_ccode">Collection</th>[% END %]
293                 <th id="[% tab | html %]_itemcallnumber" data-colname="[% tab | html %]_itemcallnumber">Call number</th>
294                 [% IF volinfo %]
295                 [% IF itemdata_publisheddate #If there is at least one published date, use it for sorting%]
296                         <th id="[% tab | html %]_enumchron" data-colname="[% tab | html %]_enumchron" class="title-string">Serial enumeration / chronology</th>
297                     [% ELSE %]
298                         <th id="[% tab | html %]_enumchron" data-colname="[% tab | html %]_enumchron">Serial enumeration / chronology</th>
299                     [% END %]
300                 [% END %]
301                 <th id="[% tab | html %]_status" data-colname="[% tab | html %]_status">Status</th>
302                 <th id="[% tab | html %]_lastseen" data-colname="[% tab | html %]_lastseen" class="title-string">Last seen</th>
303                 <th id="[% tab | html %]_dateaccessioned" data-colname="[% tab | html %]_dateaccessioned" class="title-string">Date accessioned</th>
304                 <th id="[% tab | html %]_datelastborrowed" data-colname="[% tab | html %]_datelastborrowed" class="title-string">Date last borrowed</th>
305                 <th id="[% tab | html %]_barcode" data-colname="[% tab | html %]_barcode">Barcode</th>
306                 [% IF ( itemdata_uri ) %]<th id="[% tab | html %]_uri" data-colname="[% tab | html %]_uri">URL</th>[% END %]
307                 [% IF ( itemdata_copynumber ) %]<th id="[% tab | html %]_copynumber" data-colname="[% tab | html %]_copynumber">Copy number</th>[% END %]
308                 [% IF ( itemdata_stocknumber ) %]<th id="[% tab | html %]_stocknumber" data-colname="[% tab | html %]_stocknumber">Inventory number</th>[% END %]
309                 [% IF materials %]<th id="[% tab | html %]_materials" data-colname="[% tab | html %]_materials">Materials specified</th>[% END %]
310                 [% IF ( itemdata_itemnotes ) %]<th id="[% tab | html %]_itemnotes" data-colname="[% tab | html %]_itemnotes">Public notes</th>[% END %]
311                 [% IF ( itemdata_nonpublicnotes ) %]<th id="[% tab | html %]_itemnotes_nonpublic" data-colname="[% tab | html %]_itemnotes_nonpublic">Non-public notes</th>[% END %]
312                 [% IF ( hostrecords ) %]<th id="[% tab | html %]_hostrecord" data-colname="[% tab | html %]_hostrecord">Host records</th>[% END %]
313                 [% IF ( analyze ) %]<th id="[% tab | html %]_usedin" data-colname="[% tab | html %]_usedin">Used in</th><th></th>[% END %]
314                 [% IF ( ShowCourseReserves ) %]<th id="[% tab | html %]_course_reserves" data-colname="[% tab | html %]_course_reserves">Course reserves</th>[% END %]
315                 [% IF ( SpineLabelShowPrintOnBibDetails ) %]<th id="[% tab | html %]_spinelabel" data-colname="[% tab | html %]_spinelabel" class="NoSort">Spine label</th>[% END %]
316                 [% IF ( CAN_user_editcatalogue_edit_items ) %]<th id="[% tab | html %]_actions" data-colname="[% tab | html %]_actions"class="NoSort">&nbsp;</th>[% END %]
317             </tr>
318         </thead>
319         <tbody>
320             [% FOREACH item IN items %]
321                 <tr>
322                 [% IF (StaffDetailItemSelection) %]
323                     <td style="text-align:center;vertical-align:middle">
324                         <input type="checkbox" value="[% item.itemnumber | html %]" name="itemnumber" />
325                     </td>
326                 [% END %]
327                     [% IF Koha.Preference('LocalCoverImages') && ( tab == 'holdings' && itemloop_has_images || tab == 'otherholdings' && otheritemloop_has_images ) %]
328                         <td class="cover">
329                             <div class="bookcoverimg">
330                                 <div class="cover-slider">
331                                     [% FOREACH image IN item.cover_images %]
332                                         <div class="cover-image local-coverimg">
333                                             <a href="/cgi-bin/koha/catalogue/imageviewer.pl?itemnumber=[% image.itemnumber | uri %]&amp;imagenumber=[% image.imagenumber | uri %]">
334                                                 <img src="/cgi-bin/koha/catalogue/image.pl?thumbnail=1&amp;imagenumber=[% image.imagenumber | uri %]" alt="Local cover image" />
335                                             </a>
336                                         </div>
337                                     [% END %]
338                                 </div>
339                             </div>
340                         </td>
341                     [% END %]
342
343                     [% IF ( item_level_itypes ) %]
344                         <td class="itype">
345                             [% IF !noItemTypeImages && item.imageurl %]
346                                 <img src="[% item.imageurl | html %]" alt="[% item.translated_description | html %]" title="[% item.translated_description | html %]" />
347                             [% END %]
348                             <span class="itypedesc">[% item.translated_description | html %]</span>
349                         </td>
350                     [% END %]
351                     <td class="location">[% UNLESS ( singlebranchmode ) %][% Branches.GetName( item.branchcode ) | html %] [% END %]</td>
352                     <td class="homebranch">
353                         <span class="homebranchdesc">[% Branches.GetName(item.homebranch) | html %]</span>
354                         <span class="shelvingloc">
355 <!--
356 If permanent location is defined, show description or code and display current location in parentheses. If not, display current location.
357 Note that permanent location is a code, and location may be an authval.
358 -->
359                             [% IF item.permanent_location %]
360                                 [% SET permloc_authval = AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => item.permanent_location ) %]
361                                 [% permloc_authval | html %]
362                                 [% IF item.location AND item.location != permloc_authval AND item.location != item.permanent_location %]
363                                     ([% item.location | html %])
364                                 [% END %]
365                             [% ELSE %]
366                                 [% item.location | html %]
367                             [% END %]
368                         </span>
369                     </td>
370                     [% IF ( itemdata_ccode ) %]<td>[% item.ccode | html %]</td>[% END %]
371                     <td class="itemcallnumber">[% IF ( item.itemcallnumber ) %] [% item.itemcallnumber | html %][% END %]</td>
372                     [% IF ( volinfo ) %]
373                         <td class="enumchron">
374                             [% IF itemdata_publisheddate %]<span title="[% item.publisheddate | html %]">[% END %]
375                             [% IF ( itemdata_enumchron ) %]
376                                 [% IF item.enumchron && item.serialseq %]
377                                     <span class="enum">[% item.enumchron | html %]</span>
378                                     [% IF ( item.serialseq && item.enumchron!=item.serialseq ) %]
379                                         <span class="sep"> -- </span>
380                                         <span class="serialseq">[% item.serialseq | html %]</span>
381                                     [% END %]
382                                 [% ELSIF item.enumchron %]
383                                     <span class="enum">[% item.enumchron | html %]</span>
384                                 [% ELSIF item.serialseq %]
385                                     <span class="serialseq">[% item.serialseq | html %]</span>
386                                 [% END %]
387                                 [% IF ( item.publisheddate ) %]
388                                     <span class="pubdate">([% item.publisheddate | $KohaDates %])</span>
389                                 [% END %]
390                             [% END %]
391                             </span>
392                         </td>
393                     [% END %]
394                     <td class="status">
395
396                         [% IF item.CheckedOutFor %]
397                           [% IF item.onsite_checkout %]
398                             <span>Currently in local use
399                           [% ELSE %]
400                             <span class="datedue">Checked out
401                           [% END %]
402                                 [% UNLESS ( item.NOTSAMEBRANCH ) %]
403                                   [% IF item.onsite_checkout %]
404                                     by
405                                   [% ELSE %]
406                                     to
407                                   [% END %]
408                                   [% INCLUDE 'patron-title.inc' patron=item.CheckedOutFor hide_patron_infos_if_needed=1 %]
409                                 [% END %]
410                                 : due [% item.datedue | html %]
411                             </span>
412                         [% ELSIF ( item.transfertwhen ) %]
413                             <span class="intransit">In transit from [% Branches.GetName( item.transfertfrom ) | html %] to [% Branches.GetName( item.transfertto ) | html %] since [% item.transfertwhen | $KohaDates %]</span>
414                         [% END %]
415
416                         [% IF ( item.itemlost ) %]
417                             [% IF itemlostloop %]
418                                 [% FOREACH itemlostloo IN itemlostloop %]
419                                     [% IF itemlostloo.authorised_value == item.itemlost %]
420                                         <span class="lost">[% itemlostloo.lib | html %]</span>
421                                     [% END %]
422                                 [% END %]
423                             [% ELSE %]
424                                 <span class="lost">Unavailable (lost or missing)</span>
425                             [% END %]
426                         [% END %]
427
428                         [% IF ( item.withdrawn ) %]
429                             [% IF itemwithdrawnloop %]
430                                 [% FOREACH itemwithdrawnloo IN itemwithdrawnloop %]
431                                     [% IF itemwithdrawnloo.authorised_value == item.withdrawn %]
432                                         <span class="wdn">[% itemwithdrawnloo.lib | html %]</span>
433                                     [% END %]
434                                 [% END %]
435                             [% ELSE %]
436                                 <span class="wdn">Withdrawn</span>
437                             [% END %]
438                         [% END %]
439
440                         [% IF ( item.damaged ) %]
441                             [% IF itemdamagedloop %]
442                                 [% FOREACH itemdamagedloo IN itemdamagedloop %]
443                                     [% IF itemdamagedloo.authorised_value == item.damaged %]
444                                         <span class="dmg">[% itemdamagedloo.lib | html %]</span>
445                                     [% END %]
446                                 [% END %]
447                             [% ELSE %]
448                                 <span class="dmg">Damaged</span>
449                             [% END %]
450                         [% END %]
451
452                         [% IF ( item.itemnotforloan || item.notforloan_per_itemtype ) %]
453                             <span class="notforloan">Not for loan
454                             [% IF ( item.notforloanvalue ) %]
455                                 <span class="reason">([% item.notforloanvalue | html %])</span>
456                             [% END %]
457                             </span>
458                         [% END %]
459
460                         [% SET hold = item.first_hold %]
461                         [% IF hold %]
462                             [% IF hold.waitingdate %]
463                                 <span class="waitingat">Waiting at [% Branches.GetName( hold.branchcode ) | html %] since [% hold.waitingdate | $KohaDates %].</span>
464                                 [% IF canreservefromotherbranches AND ( hold.waitingdate OR hold.priority == 1 ) %]
465                                     <span class="heldfor">Hold for:</span>
466                                     [% INCLUDE 'patron-title.inc' patron=hold.borrower hide_patron_infos_if_needed=1 %]
467                                 [% END %]
468                             [% ELSE %]
469                                 <span class="holdonitem">There is an item level hold on this item (priority = [% hold.priority | html %]).</span>
470                             [% END %]
471                         [% END %]
472                         [% UNLESS ( item.itemnotforloan || item.notforloan_per_itemtype || item.onloan || item.itemlost || item.withdrawn || item.damaged || item.transfertwhen || hold ) %]
473                             <span class="available">Available</span>
474                         [% END %]
475
476                         [% IF ( item.restricted ) %]
477                             <span class="restricted">([% item.restrictedvalue | html %])</span>
478                         [% END %]
479
480                     </td>
481                     <td class="datelastseen"><span title="[% item.datelastseen | html %]">[% item.datelastseen | $KohaDates %]</span></td>
482                     <td class="dateaccessioned"><span title="[% item.dateaccessioned | html %]">[% item.dateaccessioned | $KohaDates %]</span></td>
483                     <td class="datelastborrowed"><span title="[% item.datelastborrowed | html %]">[% item.datelastborrowed | $KohaDates %]</span></td>
484                     <td><a href="/cgi-bin/koha/catalogue/moredetail.pl?type=[% item.type | uri %]&amp;itemnumber=[% item.itemnumber | uri %]&amp;biblionumber=[% item.biblionumber | uri %]&amp;bi=[% item.biblioitemnumber | uri %]#item[% item.itemnumber | uri %]">[% item.barcode | html %]</a></td>
485                     [% IF ( itemdata_uri ) %]
486                         [% IF item.uri.split(' \| ').size > 1 %]
487                             <td class="uri">
488                                 [% FOREACH uri IN item.uri.split(' \| ') %]<a href="[% uri | url %]">[% uri | html %]</a><br>[% END %]
489                             </td>
490                         [% ELSE %]
491                             <td class="uri">
492                                 [% IF item.uri %]
493                                     <a href="[% item.uri | url %]">[% IF Koha.Preference('URLLinkText') %][% Koha.Preference('URLLinkText') | html %][% ELSE %]Link to resource[% END %]</a>
494                                 [% END %]
495                             </td>
496                         [% END %]
497                     [% END %]
498                     [% IF ( itemdata_copynumber ) %]
499                         <td class="copynumber">[% item.copynumber | html %]</td>
500                     [% END %]
501                     [% IF ( itemdata_stocknumber ) %]
502                         <td class="stocknumber">[% item.stocknumber | html %]</td>
503                     [% END %]
504                     [% IF materials %]
505                         <td class="materials"> [% item.materials | html %] </td>
506                     [% END %]
507                     [% IF ( itemdata_itemnotes ) %]
508                         <td><div class="itemnotes">[% item.itemnotes | $raw %]</div></td>
509                     [% END %]
510                     [% IF itemdata_nonpublicnotes %]
511                         <td class="nonpublicnote">[% item.itemnotes_nonpublic | html %]</td>
512                     [% END %]
513                     [% IF ( hostrecords ) %]
514                         <td>[% IF ( item.hostbiblionumber) %]<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% item.hostbiblionumber | uri %]" >[% item.hosttitle | html %]</a>[% END %]</td>
515                     [% END %]
516                     [% IF ( analyze ) %]
517                         <td>
518                             [% IF ( item.countanalytics ) %]
519                                 <a href="/cgi-bin/koha/catalogue/search.pl?idx=hi&amp;q=[% item.itemnumber | uri %]">[% item.countanalytics | html %] analytics</a>
520                             [% END %]
521                         </td>
522                     [% END %]
523                     [% IF ( analyze ) %]
524                         <td><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?hostbiblionumber=[% item.biblionumber | uri %]&amp;hostitemnumber=[% item.itemnumber | uri %]">Create analytics</a></td>
525                     [% END %]
526
527                 [% IF ShowCourseReserves %]
528                     <td>
529                         [% IF item.course_reserves %]
530                             [% FOREACH r IN item.course_reserves %]
531                                 [% IF r.course.enabled == 'yes' %]
532                                     <p>
533                                       <a href="/cgi-bin/koha/course_reserves/course-details.pl?course_id=[% r.course.course_id | uri %]">
534                                          [% r.course.course_name | html %]
535                                          <!--[% IF r.course.course_number %] [% r.course.course_number | html %] [% END %]-->
536                                          [% IF r.course.section %] [% r.course.section | html %] [% END %]
537                                          [% IF r.course.term %] [% AuthorisedValues.GetByCode( 'TERM', r.course.term ) | html %] [% END %]
538                                       </a>
539                                    </p>
540                                [% END %]
541                            [% END %]
542                        [% END %]
543                     </td>
544                 [% END %]
545
546                 [% IF ( SpineLabelShowPrintOnBibDetails ) %]
547                     <td><a class="btn btn-default btn-xs print-label" href="/cgi-bin/koha/labels/spinelabel-print.pl?barcode=[% item.barcode | uri %]"><i class="fa fa-print"></i> Print label</a></td>
548                 [% END %]
549
550                 [% IF CAN_user_editcatalogue_edit_items %]
551                     <td class="actions">
552                         [% UNLESS item.cannot_be_edited %]
553                             [% IF Koha.Preference('LocalCoverImages') OR Koha.Preference('OPACLocalCoverImages') %]
554                                 <div class="btn-group">
555                                     <a  class="btn btn-default btn-xs" href="/cgi-bin/koha/cataloguing/additem.pl?op=edititem&biblionumber=[% item.biblionumber | html %]&itemnumber=[% item.itemnumber | html %]#edititem"><i class="fa fa-pencil"></i> Edit</a><a class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></a>
556                                     <ul class="dropdown-menu pull-right">
557                                         <li><a href="/cgi-bin/koha/tools/upload-cover-image.pl?itemnumber=[% item.itemnumber | uri %]&amp;filetype=image"><i class="fa fa-upload"></i> Upload image</a></li>
558                                     </ul>
559                                 </div>
560                             [% ELSE %]
561                                 <a class="btn btn-default btn-xs" href="/cgi-bin/koha/cataloguing/additem.pl?op=edititem&biblionumber=[% item.biblionumber | html %]&itemnumber=[% item.itemnumber | html %]#edititem"><i class="fa fa-pencil"></i> Edit</a>
562                             [% END %]
563                         [% END %]
564                     </td>
565                 [% END %]
566                 </tr>
567             [% END %]
568         </tbody>
569     </table>
570
571 [% END %][%# end of block items_table %]
572
573 <div id="holdings">
574
575 [% IF ( Koha.Preference('NovelistSelectStaffEnabled') && Koha.Preference('NovelistSelectStaffProfile') && Koha.Preference('NovelistSelectStaffView') == 'above' ) %]
576     <span class="results_summary NovelistSelect" style="display:none;">
577         <span class="label">Novelist Select: </span>
578         <div data-novelist-novelistselect=[% normalized_isbn | html %]></div>
579     </span>
580 [% END %]
581
582 [% IF ( count ) %]
583     [% IF ( showncount ) %]
584         [% PROCESS items_table tab="holdings" items=itemloop %]
585         [% END %]
586                 [% IF ( hiddencount ) %]
587                    <p><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber | uri %]&amp;showallitems=1">Show all items ([% hiddencount | html %] hidden)</a>
588                 [% END %]               
589                 [% IF ( debug_display ) %]
590                 <br /><br />
591                 <table>
592                         <tr><td>itemdata_enumchron</td><td>[% itemdata_enumchron | html %]</td></tr>
593                         <tr><td>itemdata_copynumber</td><td>[% itemdata_copynumber | html %]</td></tr>
594                         <tr><td>serial</td><td>[% serial | html %]</td></tr>
595                 </table>
596                 [% END %]
597 [% ELSE %]
598     [% IF ( ALTERNATEHOLDINGS ) %]
599     [% FOREACH ALTERNATEHOLDING IN ALTERNATEHOLDINGS %]
600         <div id="alternateholdings"><span class="holdings_label">Holdings:</span> [% ALTERNATEHOLDING.holding | html %]</div>
601     [% END %]
602     [% ELSE %]
603     <div id="noitems">No physical items for this record</div>
604     [% END %]
605 [% END %]
606
607 [% IF ( Koha.Preference('NovelistSelectStaffEnabled') && Koha.Preference('NovelistSelectStaffProfile') && Koha.Preference('NovelistSelectStaffView') == 'below' ) %]
608     <span class="results_summary NovelistSelect" style="display:none;">
609         <span class="label">Novelist Select: </span>
610         <div data-novelist-novelistselect=[% normalized_isbn | html %]></div>
611     </span>
612 [% END %]
613     </div>
614
615 [% IF (SeparateHoldings) %]
616     <div id="otherholdings">
617         [% IF (otheritemloop.size) %]
618             [% PROCESS items_table tab="otherholdings" items=otheritemloop %]
619         [% ELSE %]
620             <span class="nootheritems">No other items.</span>
621         [% END %]
622     </div>
623 [% END %]
624
625 [% IF ( MARCNOTES || notes ) %]
626
627 <div id="description">
628 <div class="content_set">
629
630 [% IF ( MARCNOTES ) %]
631     [% FOREACH MARCNOTE IN MARCNOTES %]
632         <p>
633         [% IF MARCNOTE.marcnote.match('^https?://\S+$') %]
634             <a href="[% MARCNOTE.marcnote | url %]">[% MARCNOTE.marcnote | html %]</a>
635         [% ELSE %]
636             [% MARCNOTE.marcnote | html | html_line_break %]
637         [% END %]
638         </p>
639     [% END %]
640 [% ELSE %]
641     [% IF ( notes ) %]
642         <p>[% notes | html %]</p>
643     [% END %]
644 [% END %]
645 </div>
646 </div>
647
648 [% END %]
649
650 [% IF ( subscriptionsnumber ) %]
651 <div id="subscriptions">
652 <div id="catalogue_detail_subscriptions">
653     <h2>This is a serial subscription</h2>
654     <p> (There are [% subscriptionsnumber | html %] subscriptions associated with this title).</p> 
655     [% FOREACH subscription IN subscriptions %]
656             [% IF subscription.branchcode %]
657                 <h3>At library: [% Branches.GetName(subscription.branchcode) || subscription.branchcode | html %]</h3>
658             [% END %]
659             [% IF ( subscription.closed ) %]<p>This subscription is closed.</p>[% END %]
660             [% IF ( subscription.location ) %]<p class="subscription_location">Location: [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => subscription.location ) | html %]</p>[% END %]
661             [% IF ( subscription.callnumber ) %]<p>Callnumber: [% subscription.callnumber | html %] </p>[% END %]
662             [% IF ( subscription.subscriptionnotes ) %]<p>[% subscription.subscriptionnotes | html | html_line_break %] </p>[% END %]
663             [% IF ( subscription.missinglist ) %]<p>Missing issues: [% subscription.missinglist | html %] </p>[% END %]
664             [% IF ( subscription.librariannote ) %]<p>([% subscription.librariannote | html %])</p>[% END %]
665             [% IF ( subscription.latestserials ) %]
666             <p> The [% subscription.staffdisplaycount | html %] latest issues related to this subscription:</p>
667             <table>
668                 <tr>
669                     <th>Issue #</th>
670                     <th>Date arrived</th>
671                     <th>Date published</th>
672                     <th>Status</th>
673                     <th>Note</th>
674                 </tr>
675             [% FOREACH latestserial IN subscription.latestserials %]
676                 <tr>
677                     <td>[% latestserial.serialseq | html %]</td>
678                     <td><span title="[% latestserial.planneddate | html %]">[% latestserial.planneddate | $KohaDates %]</span></td>
679                     <td><span title="[% latestserial.publisheddate | html %]">[% latestserial.publisheddate | $KohaDates %]</span></td>
680                     <td>
681                       [% IF ( latestserial.status1 ) %]Expected[% END %]
682                       [% IF ( latestserial.status2 ) %]Arrived[% END %]
683                       [% IF ( latestserial.status3 ) %]Late[% END %]
684                       [% IF ( latestserial.status4 ) %]Missing[% END %]
685                       [% IF ( latestserial.status41 ) %]Missing (never received)[% END %]
686                       [% IF ( latestserial.status42 ) %]Missing (sold out)[% END %]
687                       [% IF ( latestserial.status43 ) %]Missing (damaged)[% END %]
688                       [% IF ( latestserial.status44 ) %]Missing (lost)[% END %]
689                       [% IF ( latestserial.status5 ) %]Not issued[% END %]
690                       [% IF ( latestserial.status6 ) %]Delete[% END %]
691                       [% IF ( latestserial.status7 ) %]Claimed[% END %]
692                       [% IF ( latestserial.status8 ) %]Stopped[% END %]
693                     </td>
694                     <td>[% latestserial.notes | html %]</td>
695                 </tr>
696             [% END %]
697             </table>
698             [% END %]
699             <a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=[% subscription.subscriptionid | uri %]">Subscription details</a>
700     [% END %]
701 </div>
702 </div>
703 [% END %]
704
705 [% IF Koha.Preference('AcquisitionDetails') %]
706 <div id="acq_details">
707   [% IF orders.count %]
708     <table id="orders">
709       <thead>
710         <tr>
711           <th>Vendor</th>
712           <th>Invoice</th>
713           <th>Basket group</th>
714           <th>Basket</th>
715           <th>Order number</th>
716           <th class="title-string">Creation date</th>
717           <th class="title-string">Receive date</th>
718           <th>Status</th>
719           <th>Quantity</th>
720           <th>Internal note</th>
721           <th>Subscription</th>
722           <th>Subscription callnumber</th>
723         </tr>
724       </thead>
725       <tbody>
726       [% FOR order IN orders %]
727         [% SET basket = order.basket %]
728         [% SET vendor = basket.bookseller %]
729           <tr>
730             <td>
731                 <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% vendor.id | uri %]" title="Vendor detail page">[% vendor.name | html %]</a>
732             </td>
733             <td>
734             [% IF order.invoiceid %]
735                 [% IF CAN_user_acquisition %]
736                     <a href="/cgi-bin/koha/acqui/invoice.pl?invoiceid=[% order.invoiceid | uri %]"
737                        title="Invoice detail page">
738                        [% order.invoice.invoicenumber | html %]</a>
739                 [% ELSE %]
740                     [% order.invoice.invoicenumber | html %]
741                 [% END %]
742             [% END %]
743             </td>
744             <td>
745             [% IF basket.basketgroupid %]
746                 [% SET basket_group = basket.basket_group %]
747                 [% IF CAN_user_acquisition_group_manage %]
748                     <a href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&booksellerid=[% vendor.id | uri %]&basketgroupid=[% basket_group.id | uri %]">[% basket_group.name | html%] ([% basket_group.id | html %])</a>
749                 [% ELSE %]
750                     [% basket_group.name | html %] ([% basket_group.id | html %])
751                 [% END %]
752             [% END %]
753             </td>
754             <td>[% IF CAN_user_acquisition_order_manage %]
755                 <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basket.basketno | uri %]">[% basket.basketname | html %] ([% basket.basketno | html %])</a>
756             [% ELSE %]
757                 [% basket.basketname | html %] ([% basket.basketno | html %])
758             [% END %]</td>
759             <td>[% order.ordernumber | html %]</td>
760             <td><span title="[% basket.creationdate | uri %]">[% basket.creationdate | $KohaDates%]</span></td>
761             <td><span title="[% order.datereceived | uri %]">[% order.datereceived | $KohaDates%]</span></td>
762             <td>
763               [% SWITCH order.orderstatus %]
764                 [% CASE 'new' %]New
765                 [% CASE 'ordered' %]Ordered
766                 [% CASE 'partial' %]Partial
767                 [% CASE 'complete' %]Complete
768                 [% CASE 'cancelled' %]Cancelled
769               [% END %]
770             </td>
771             <td>[% order.quantity | html %]</td>
772             <td>[% order.order_internalnote | html %]</td>
773             <td>
774                 [% IF order.subscriptionid %]
775                     <a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=[% order.subscriptionid | uri %]">[% order.subscriptionid | html %]</a>
776                 [% END %]
777             </td>
778             <td>
779                 [% IF order.subscriptionid %]
780                     [% order.subscription.callnumber | html %]
781                 [% END %]
782             </td>
783           </tr>
784       [% END %]
785       </tbody>
786     </table>
787   [% ELSE %]
788     <span class="noorder">There is no order for this bibliographic record.</span>
789   [% END %]
790 </div>
791 [% END %]
792
793 [% IF suggestions.count %]
794     <div id="suggestion_details">
795         [% IF nb_archived_suggestions > 0 %]
796             <p>[% tnpx('pluralization', 'There is one archived suggestion.', 'There are {count} archived suggestions.', nb_archived_suggestions, { count = nb_archived_suggestions }) | $raw  %]
797         [% END %]
798         <table id="suggestions" class="sorted">
799             <thead>
800                 <tr>
801                     <th class="NoSort">&nbsp;</th>
802                     <th class="anti-the">Suggestion</th>
803                     <th>Suggested by - on</th>
804                     <th>Managed by - on</th>
805                     <th>Last modification by - on</th>
806                     <th>Library</th>
807                     <th>Fund</th>
808                     <th>Status</th>
809                 </tr>
810             </thead>
811             <tbody>
812             [% FOREACH suggestion IN suggestions %]
813                 <tr>
814                     <td>[% suggestion.suggestionid | html %]</td>
815                     <td>
816                         <a href="/cgi-bin/koha/suggestion/suggestion.pl?suggestionid=[% suggestion.suggestionid | uri %]&amp;op=show" title="suggestion" >
817                             [% suggestion.title | html %][% IF ( suggestion.author ) %], by [% suggestion.author | html %][% END %]</a>
818                         <br />
819                         [% IF ( suggestion.copyrightdate ) %]&copy; [% suggestion.copyrightdate | html %] [% END %]
820                         [% IF ( suggestion.volumedesc ) %]; Volume:<em>[% suggestion.volumedesc | html %]</em> [% END %]
821                         [% IF ( suggestion.isbn ) %]; ISBN:<em>[% suggestion.isbn | html %]</em> [% END %][% IF ( suggestion.publishercode ) %]; Published by [% suggestion.publishercode | html %] [% END %][% IF ( suggestion.publicationyear ) %] in <em>[% suggestion.publicationyear | html %]</em> [% END %][% IF ( suggestion.place ) %] in <em>[% suggestion.place | html %]</em> [% END %][% IF ( suggestion.collectiontitle ) %]; [% suggestion.collectiontitle | html %] [% END %][% IF ( suggestion.itemtype ) %]; [% AuthorisedValues.GetByCode( 'SUGGEST_FORMAT', suggestion.itemtype, 0 ) | html %] [% END %]<br />[% IF ( suggestion.note ) %]<div class="suggestion_note"><i class="fa fa-comment"></i> [% suggestion.note | html %]</div>[% END %]
822                     </td>
823                     <td>
824                         <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% suggestion.suggestedby | uri %]">[% INCLUDE 'patron-title.inc' patron => suggestion.suggester %]</a>
825                         [% IF suggestion.suggesteddate %] - [% suggestion.suggesteddate | $KohaDates %][% END %]
826                     </td>
827                     <td>
828                         <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% suggestion.managedby | uri %]">[% INCLUDE 'patron-title.inc' patron => suggestion.manager %]</a>
829                         [% IF suggestion.manageddate %] - [% suggestion.manageddate | $KohaDates %][% END %]
830                     </td>
831                     <td>
832                         <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% suggestion.lastmodificationby | uri %]">[% INCLUDE 'patron-title.inc' patron => suggestion.last_modifier %]</a>
833                         [% IF suggestion.lastmodificationdate %] - [% suggestion.lastmodificationdate | $KohaDates %][% END %]
834                     </td>
835                     <td>
836                         [% Branches.GetName( suggestion.branchcode ) | html %]
837                     </td>
838                     <td>
839                         [% suggestion.fund.budget_name | html %]
840                     </td>
841                     <td>
842                         [% IF    suggestion.STATUS == 'ASKED'     %]Pending
843                         [% ELSIF suggestion.STATUS == 'ACCEPTED'  %]Accepted
844                         [% ELSIF suggestion.STATUS == 'ORDERED'   %]Ordered
845                         [% ELSIF suggestion.STATUS == 'REJECTED'  %]Rejected
846                         [% ELSIF suggestion.STATUS == 'CHECKED'   %]Checked
847                         [% ELSIF suggestion.STATUS == 'AVAILABLE' %]Available
848                         [% ELSIF AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestion.STATUS ) %]
849                             [% AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestion.STATUS ) | html %]
850                         [% ELSE %]Status unknown
851                         [% END %]
852                         [% IF suggestion.reason %]
853                             <br />([% suggestion.reason | html %])
854                         [% END %]
855                     </td>
856                 </tr>
857                 [% END %]
858             </tbody>
859         </table>
860     </div>
861 [% END %]
862
863 [% IF ( FRBRizeEditions ) %][% IF ( XISBNS ) %]
864 <div id="editions"><h4>Editions</h4>
865 <table>
866 [% FOREACH XISBN IN XISBNS %]<tr>[% IF ( AmazonCoverImages ) %]<td><a href="http://www.amazon.com/gp/reader/[% XISBN.normalized_isbn | uri %][% AmazonAssocTag | uri %]#reader-link"><img src="https://images-na.ssl-images-amazon.com/images/P/[% XISBN.normalized_isbn | html %].01._AA75_PU_PU-5_.jpg" /></a></td>[% END %]
867 [% IF ( !item_level_itypes || Koha.Preference('BiblioItemtypeInfo') ) %]<td>[% IF ( noItemTypeImages ) %][% XISBN.description | html %][% ELSE %]<img src="[% XISBN.imageurl | html %]" alt="[% XISBN.description | html %]" title="[% XISBN.description | html %]">[% END %]</td>[% END %]
868 <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% XISBN.biblionumber | uri %]">[% XISBN.title | html %]</a> by [% XISBN.author | html %] &copy;[% XISBN.copyrightdate | html %]
869   [% IF ( XISBN.publishercode ) %]
870 [% XISBN.publishercode | html %] [% IF ( XISBN.place ) %]([% XISBN.place | html %])[% END %] [% IF ( XISBN.publicationyear ) %], [% XISBN.publicationyear | html %][% END %] [% IF ( XISBN.editionstatement ) %][% XISBN.editionstatement | html %][% END %] [% IF ( XISBN.editionresponsibility ) %][% XISBN.editionresponsibility | html %][% END %]
871     [% END %]
872                 [% IF ( XISBN.pages ) %] [% END %][% XISBN.pages | html %] [% IF ( XISBN.illus ) %][% XISBN.illus | html %][% END %]
873                 [% IF ( XISBN.size ) %], [% END %][% XISBN.size | html %]
874 </td>
875
876 [% END %]
877 </table></div>[% END %]
878 [% END %]
879
880 [% IF ( LocalCoverImages ) %]
881     <div id="images">
882         [% IF localimages.count %]
883             <p>Click on an image to view it in the image viewer</p>
884             <ul class="thumbnails">
885                 [% FOREACH image IN localimages %]
886                     [% IF image %]
887                         <li id="imagenumber-[% image.imagenumber | html %]" class="thumbnail">
888                             <a href="/cgi-bin/koha/catalogue/imageviewer.pl?biblionumber=[% biblionumber | uri %]&amp;imagenumber=[% image.imagenumber | uri %]">
889                                 <img src="/cgi-bin/koha/catalogue/image.pl?thumbnail=1&amp;imagenumber=[% image.imagenumber | uri %]" />
890                             </a>
891                             [% IF CAN_user_tools_upload_local_cover_images %]
892                                 <a href="#" class="remove"><i class="fa fa-trash"></i> Delete image</a>
893                             [% END %]
894                         </li>
895                     [% END %]
896                 [% END %]
897             </ul>
898         [% ELSE # - No image passed JavaScript takes care %]
899             <span class="noimagesuploaded">No images have been uploaded for this bibliographic record yet.</span>
900         [% END %]
901         [% IF ( CAN_user_tools_upload_local_cover_images ) %]
902             <p>Upload an image file: <a class="btn btn-default btn-xs" href="/cgi-bin/koha/tools/upload-cover-image.pl?biblionumber=[% biblionumber | uri %]&amp;filetype=image"><i class="fa fa-upload" aria-hidden="true"></i> Upload</a>
903             </p>
904         [% END %]
905     </div>
906 [% END %]
907
908 [% IF ( HTML5MediaEnabled ) %]
909 <div id="html5media">
910           [% FOREACH HTML5MediaSet IN HTML5MediaSets %]
911             <p>
912                 [% IF HTML5MediaSet.is_youtube %]
913                     <iframe id="player" type="text/html" width="640" height="360"
914                         src="[% HTML5MediaSet.srcblock | url %]" frameborder="0"></iframe>
915                 [% ELSE %]
916                   <[% HTML5MediaParent | html %] controls preload=none>
917                     <[% HTML5MediaSet.child | html %] src="[% HTML5MediaSet.srcblock | url %]"[% HTML5MediaSet.typeblock | html %] />
918                     [[% HTML5MediaParent | html %] tag not supported by your browser.]
919                   </[% HTML5MediaParent | html %]>
920                 [% END %]
921             </p>
922           [% END %]
923 </div>
924 [% END %]
925
926
927 [% IF ( Koha.Preference('NovelistSelectStaffEnabled') && Koha.Preference('NovelistSelectStaffProfile') && Koha.Preference('NovelistSelectStaffView') == 'tab' ) %]
928     <div id="NovelistSelect" class="novelistSelect">
929         <div data-novelist-novelistselect=[% normalized_isbn | html %]></div>
930     </div>
931 [% END %]
932
933 [% FOREACH tab IN tabs %]
934     <div id="[% tab.id | html %]">
935         [% tab.content | $raw %]
936     </div>
937 [% END %]
938
939 </div><!-- /bibliodetails -->
940
941 <div id="export" style="margin-top: 1em;">
942 <form method="get" action="/cgi-bin/koha/catalogue/export.pl">
943 <table>  <tr>
944       <th>Save record</th>   </tr>
945     <tr><td> Select download format:    <select name="format">
946         <option value="mods">MODS (XML)</option>
947         <option data-toggle="modal" data-target="#exportModal_">Dublin Core</option>
948         <option value="marcxml">MARCXML</option>
949         <option value="marc8">MARC (non-Unicode/MARC-8)</option>
950         <option value="utf8">MARC (Unicode/UTF-8)</option>    </select>
951         <input type="submit" name="save" value="Download record" /></td>
952   </tr>
953   <tr><td>
954     <input type="hidden" name="op" value="export" /><input type="hidden" name="bib" value="[% biblionumber | html %]" />
955   </td></tr>
956 </table>
957 </form>
958 </div>
959
960 <div id="marcPreview" class="modal" tabindex="-1" role="dialog" aria-labelledby="marcPreviewLabel" aria-hidden="true">
961     <div class="modal-dialog modal-lg">
962     <div class="modal-content">
963     <div class="modal-header">
964         <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
965         <h3 id="marcPreviewLabel">MARC preview</h3>
966     </div>
967     <div class="modal-body">
968         <div id="loading"> <img src="[% interface | html %]/[% theme | html %]/img/spinner-small.gif" alt="" /> Loading </div>
969     </div>
970     <div class="modal-footer">
971         <button class="btn btn-default" data-dismiss="modal" aria-hidden="true">Close</button>
972     </div>
973     </div>
974     </div>
975 </div>
976
977             </main>
978         </div> <!-- /.col-sm-10.col-sm-push-2 -->
979
980         <div class="col-sm-2 col-sm-pull-10">
981             <aside>
982                 [% INCLUDE 'biblio-view-menu.inc' %]
983             </aside>
984         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
985      </div> <!-- /.row -->
986
987 [% END %]
988
989 [% MACRO jsinclude BLOCK %]
990     [% INCLUDE 'catalog-strings.inc' %]
991     [% Asset.js("js/catalog.js") | $raw %]
992     [% Asset.js("js/coce.js") | $raw %]
993     <script>
994         var interface = "[% interface | html %]";
995         var theme = "[% theme | html %]";
996         // http://www.oreillynet.com/pub/a/javascript/2003/10/21/amazonhacks.html
997         function verify_images() {
998             // Loop over each container in the template which contains covers
999             $(".cover-slider").each(function(){
1000                 $(this).find(".cover-image").each( function( index ){
1001                     var div = $(this);
1002                     // Find the image in the container
1003                     var img = div.find("img")[0];
1004                     if( $(img).length > 0 ){
1005                         if( (img.complete != null) && (!img.complete) || img.naturalHeight == 0 ){
1006                             // No image loaded in the container. Remove the slide
1007                             div.remove();
1008                         } else {
1009                             // All slides start hidden. If this is the first one, show it.
1010                             if( index == 0 ){
1011                                 div.show();
1012                             }
1013                             // Check if Amazon image is present
1014                             if ( div.attr("id") == "amazon-bookcoverimg"  ) {
1015                                 w = img.width;
1016                                 h = img.height;
1017                                 if ((w == 1) || (h == 1)) {
1018                                     // Amazon returned single-pixel placeholder
1019                                     // Remove the container
1020                                     div.remove();
1021                                 }
1022                             }
1023                             if( div.attr("id") == "custom-img" ){
1024                                 if ( (img.complete != null) && (!img.complete) || img.naturalHeight == 0 ) {
1025                                     // No image was loaded via the CustomCoverImages system preference
1026                                     // Remove the container
1027                                     div.remove();
1028                                 }
1029                             }
1030                             if( div.attr("id") == "coce-coverimg" ){
1031                                 // Identify which service's image is being loaded by Coce
1032                                 if( $(img).attr("src").indexOf('amazon.com') >= 0 ){
1033                                     div.find(".hint").html(_("Coce image from Amazon.com"));
1034                                 } else if( $(img).attr("src").indexOf('google.com') >= 0 ){
1035                                     div.find(".hint").html(_("Coce image from Google Books"));
1036                                 } else if( $(img).attr("src").indexOf('openlibrary.org') >= 0 ){
1037                                     div.find(".hint").html(_("Coce image from Open Library"));
1038                                 }
1039                             }
1040                         }
1041                     }
1042                 });
1043             });
1044
1045             $(".cover-slider").each(function(){
1046                 var coverSlide = this;
1047                 var coverImages = $(this).find(".cover-image");
1048                 if( coverImages.length > 1 ){
1049                     coverImages.each(function( index ){
1050                         // If more that one image is present, add a navigation link
1051                         // for activating the slide
1052                         var covernav = $("<a href=\"#\" data-num=\"" + index + "\" class=\"cover-nav\"></a>");
1053                         if( index == 0 ){
1054                             // Set the first navigation link as active
1055                             $(covernav).addClass("nav-active");
1056                         }
1057                         $(covernav).html("<i class=\"fa fa-circle\"></i>");
1058                         $(coverSlide).append( covernav );
1059                     });
1060                 }
1061
1062                 if( $(coverSlide).find(".cover-image:visible").length < 1 ){
1063                     $(coverSlide).remove();
1064                 } else {
1065                     $(coverSlide).addClass("cover-slides");
1066                 }
1067             });
1068
1069             $("#editions img").each(function(i){
1070                 if ( this.src.indexOf('amazon.com') >= 0 ) {
1071                     w = this.width;
1072                     h = this.height;
1073                     if ((w == 1) || (h == 1)) {
1074                         this.src = 'https://images-na.ssl-images-amazon.com/images/G/01/x-site/icons/no-img-sm.gif';
1075                     } else if ( (this.complete != null) && (!this.complete) || this.naturalHeight == 0 ) {
1076                         this.src = 'https://images-na.ssl-images-amazon.com/images/G/01/x-site/icons/no-img-sm.gif';
1077                     }
1078                 }
1079             });
1080         }
1081
1082         function removeLocalImage(imagenumber) {
1083             var thumbnail = $("#imagenumber-" + imagenumber );
1084             var copy = thumbnail.html();
1085             thumbnail.find("img").css("opacity", ".2");
1086             thumbnail.find("a.remove").html("<img style='display:inline-block' src='" + interface + "/" + theme + "/img/spinner-small.gif' alt='' />");
1087             $.ajax({
1088                 url: "/cgi-bin/koha/svc/cover_images?action=delete&imagenumber=" + imagenumber,
1089                 success: function(data) {
1090                     $(data).each( function(i) {
1091                         if ( this.deleted == 1 ) {
1092                             thumbnail.remove();
1093                         } else {
1094                             thumbnail.html( copy );
1095                             alert(_("An error occurred on deleting this image"));
1096                         }
1097                         if ( $('ul.thumbnails > li').length == 0 ) {
1098                             showNoImageMessage();
1099                         }
1100                     });
1101                 },
1102                 error: function(data) {
1103                     thumbnail.html( copy );
1104                     alert(_("An error occurred on deleting this image"));
1105                 }
1106             });
1107         }
1108
1109         function showNoImageMessage() {
1110             var no_images_msg = _("No images have been uploaded for this bibliographic record yet.");
1111             no_images_msg = '<p>' + no_images_msg + '</p>';
1112             [% IF ( CAN_user_tools_upload_local_cover_images ) %]
1113                 var please_upload = _("Upload an image file: %sUpload%s").format("<a class='btn btn-default btn-xs' href='/cgi-bin/koha/tools/upload-cover-image.pl?biblionumber=" + biblionumber + "&amp;filetype=image'><i class='fa fa-upload' aria-hidden='true'></i> ","</a>");
1114                 no_images_msg += "<p id='upload_image'>" + please_upload + '</p>';
1115             [% END %]
1116             $('#images').html(no_images_msg);
1117         }
1118
1119         [% IF StaffDetailItemSelection %]
1120             function itemSelectionBuildDeleteLink(div) {
1121                 var itemnumbers = new Array();
1122                 $("input[name='itemnumber'][type='checkbox']:checked", div).each(function() {
1123                     itemnumbers.push($(this).val());
1124                 });
1125                 if (itemnumbers.length > 0) {
1126                     var url = '/cgi-bin/koha/tools/batchMod.pl?op=show&del=1';
1127                     url += '&itemnumber=' + itemnumbers.join('&itemnumber=');
1128                     url += '&biblionumber=[% biblionumber | uri %]';
1129                     url += '&src=CATALOGUING';
1130                     $('a.itemselection_action_delete').attr('href', url);
1131                 } else {
1132                     return false;
1133                 }
1134                 return true
1135             }
1136
1137             function itemSelectionBuildModifyLink(div) {
1138                 var itemnumbers = new Array();
1139                 $("input[name='itemnumber'][type='checkbox']:checked", div).each(function() {
1140                     itemnumbers.push($(this).val());
1141                 });
1142                 if (itemnumbers.length > 0) {
1143                     var url = '/cgi-bin/koha/tools/batchMod.pl?op=show';
1144                     url += '&itemnumber=' + itemnumbers.join('&itemnumber=');
1145                     url += '&biblionumber=[% biblionumber | uri %]';
1146                     url += '&src=CATALOGUING';
1147                     $('a.itemselection_action_modify').attr('href', url);
1148                 } else {
1149                     return false;
1150                 }
1151                 return true;
1152             }
1153
1154             function itemSelectionBuildActionLinks(tab) {
1155                 var div = $("#" + tab);
1156                 var delete_link_ok = itemSelectionBuildDeleteLink(div);
1157                 var modify_link_ok = itemSelectionBuildModifyLink(div);
1158                 if (modify_link_ok || delete_link_ok) {
1159                     $('.itemselection_actions', div).show();
1160                 } else {
1161                     $('.itemselection_actions', div).hide();
1162                 }
1163             }
1164
1165             $(document).ready(function() {
1166                 $('table.items_table').each(function() {
1167                     var div = $(this).parent().attr("id");
1168                     itemSelectionBuildActionLinks(div);
1169                 });
1170
1171                 $("input[name='itemnumber'][type='checkbox']").change(function() {
1172                     var div = $(this).parents('table').parent().parent().attr("id");
1173                     itemSelectionBuildActionLinks(div);
1174                 });
1175
1176                 $(".SelectAll").on("click",function(e){
1177                     e.preventDefault();
1178                     var tab = $(this).data("tab");
1179                     $("input[name='itemnumber'][type='checkbox']", $("#"+tab)).prop('checked', true);
1180                     itemSelectionBuildActionLinks(tab);
1181                 });
1182
1183                 $(".ClearAll").on("click",function(e){
1184                     e.preventDefault();
1185                     var tab = $(this).data("tab");
1186                     $("input[name='itemnumber'][type='checkbox']", $("#"+tab)).prop('checked', false);
1187                     itemSelectionBuildActionLinks(tab);
1188                 });
1189             });
1190         [% END %]
1191
1192         $(document).ready(function() {
1193             $('#bibliodetails').tabs();
1194         [% IF count == 0 and ( Koha.Preference('HTML5MediaEnabled') == 'staff' or Koha.Preference('HTML5MediaEnabled') == 'both' ) %]
1195             $('#bibliodetails').tabs("option", "active", $('#media_tab').index() );
1196         [% END %]
1197             $('#search-form').focus();
1198             $('.thumbnails > li > .remove').click(function() {
1199                 var result = confirm(_("Are you sure you want to delete this cover image?"));
1200
1201                 if ( result == true ) {
1202                     var imagenumber = $(this).parent().attr('id').split('-')[1];
1203                     removeLocalImage(imagenumber);
1204                 }
1205
1206                 return false;
1207             });
1208             [% IF ( IntranetCoce && CoceProviders ) %]
1209                 KOHA.coce.getURL('[% CoceHost | html %]', '[% CoceProviders | html %]');
1210             [% END %]
1211
1212             $("body").on("click",".previewMARC", function(e){
1213                 e.preventDefault();
1214                 var page = $(this).attr("href");
1215                 $("#marcPreview .modal-body").load(page + " table");
1216                 $('#marcPreview').modal({show:true});
1217             });
1218             $("#marcPreview").on("hidden.bs.modal", function(){
1219                 $("#marcPreview .modal-body").html("<div id=\"loading\"><img src=\"[% interface | html %]/[% theme | html %]/img/spinner-small.gif\" alt=\"\" /> "+_("Loading")+"</div>");
1220             });
1221             [% IF ( Koha.Preference('NovelistSelectStaffEnabled') && Koha.Preference('NovelistSelectStaffProfile') && ( normalized_isbn || normalized_upc ) ) %]
1222                 novSelect.loadContentForQuery({
1223                     ClientIdentifier : '[% IF normalized_isbn %][% normalized_isbn | html %][% ELSE %][% normalized_upc | html %][% END %]',
1224                     ISBN : '[% IF normalized_isbn %][% normalized_isbn | html %][% ELSE %][% normalized_upc | html %][% END %]',
1225                     version : '2.1'
1226                 },
1227                 '[% Koha.Preference('NovelistSelectStaffProfile') | html %]',
1228                 '[% Koha.Preference('NovelistSelectPassword') | html %]',
1229                 function(d){
1230                     if ( d.length > 0 ){ //If no content
1231                         $(".NovelistSelect").show();
1232                     }
1233                  });
1234              [% END %]
1235              $(".print-label").on("click", function(e){
1236                 e.preventDefault();
1237                 link = $(this).attr("href");
1238                 openWindow(link,"Print spine label",400,400);
1239              });
1240              $(".cover-slider").on("click",".cover-nav", function(e){
1241                  e.preventDefault();
1242                 var cover_slider = $(this).parent();
1243                 // Adding click handler for cover image navigation links
1244                 var num = $(this).data("num");
1245                 $(cover_slider).find(".cover-nav").removeClass("nav-active");
1246                 $(this).addClass("nav-active");
1247                 $(cover_slider).find(".cover-image").hide();
1248                 $(cover_slider).find(".cover-image").eq( num ).show();
1249              });
1250         });
1251
1252         $(window).load(function() {
1253             verify_images();
1254         });
1255     </script>
1256     [% IF ( Koha.Preference('NovelistSelectStaffEnabled') && Koha.Preference('NovelistSelectStaffProfile') && ( normalized_isbn || normalized_upc ) ) %]
1257         <script src="https://imageserver.ebscohost.com/novelistselect/ns2init.js"></script>
1258     [% END %]
1259     [% INCLUDE 'datatables.inc' %]
1260     [% Asset.js("lib/jquery/plugins/jquery.dataTables.columnFilter.js") | $raw %]
1261     [% INCLUDE 'columns_settings.inc' %]
1262     [% Asset.js("js/browser.js") | $raw %]
1263     [% Asset.js("js/table_filters.js") | $raw %]
1264     <script>
1265         var browser;
1266         browser = KOHA.browser('[% searchid | html %]', parseInt(biblionumber, 10));
1267         browser.show();
1268
1269         $(document).ready(function() {
1270             var ids = ['holdings_table', 'otherholdings_table'];
1271             var columns_settings = [ [% TablesSettings.GetColumns('catalogue', 'detail','holdings_table','json') | $raw %], [% TablesSettings.GetColumns('catalogue', 'detail','otherholdings_table','json')  | $raw %] ];
1272             var has_images = ["[% itemloop_has_images %]", "[% otheritemloop_has_images %]"];
1273             for (var i in ids) {
1274                 var id = ids[i];
1275                 if ( !has_images[i] ) { // remove the cover_image column
1276                     columns_settings.splice(1,1);
1277                 }
1278                 var dt_parameters = {
1279                     'sDom': 't',
1280                     'bPaginate': false,
1281                     'bAutoWidth': false,
1282                     "bKohaColumnsUseNames": true,
1283                     "sDom": 'C<"top pager"ilpfB><"#filter_c">tr<"bottom pager"ip>',
1284                 };
1285                 var table = KohaTable(id, dt_parameters, columns_settings[i], 'with_filters');
1286             }
1287
1288             [% IF Koha.Preference('AcquisitionDetails') %]
1289                 var columns_settings = [% TablesSettings.GetColumns('catalogue', 'detail', 'acquisitiondetails-table', 'json') %];
1290                 var acquisitiondetails_table = KohaTable("orders", {
1291                     "sDom": 'C<"top pager"ilpfB><"#filter_c">tr<"bottom pager"ip>',
1292                     'bPaginate': false,
1293                     'bAutoWidth': false,
1294                     "aaSorting": [[ 4, "desc" ]],
1295                 }, columns_settings);
1296             [% END %]
1297
1298             [% IF suggestions.count %]
1299                 $(".sorted").dataTable($.extend(true, {}, dataTablesDefaults, {
1300                     "aoColumnDefs": [
1301                         { "bSortable": false, "bSearchable": false, 'aTargets': [ 'NoSort' ] },
1302                         { "sType": "anti-the", "aTargets" : [ "anti-the" ] }
1303                     ],
1304                     "sPaginationType": "full"
1305                 }));
1306             [% END %]
1307         });
1308     </script>
1309 [% END %]
1310 [% INCLUDE 'intranet-bottom.inc' %]