View | Details | Raw Unified | Return to bug 25302
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (-629 / +735 lines)
Lines 19-37 Link Here
19
[% ShowCourseReservesHeader = 0 %]
19
[% ShowCourseReservesHeader = 0 %]
20
[% IF Koha.Preference( 'UseCourseReserves' ) == 1 %]
20
[% IF Koha.Preference( 'UseCourseReserves' ) == 1 %]
21
    [% FOREACH ITEM_RESULT IN itemloop %]
21
    [% FOREACH ITEM_RESULT IN itemloop %]
22
       [% IF ITEM_RESULT.course_reserves %]
22
        [% IF ITEM_RESULT.course_reserves %]
23
           [% FOREACH r IN ITEM_RESULT.course_reserves %]
23
            [% FOREACH r IN ITEM_RESULT.course_reserves %]
24
               [% IF r.course.enabled == 'yes' %]
24
                [% IF r.course.enabled == 'yes' %]
25
                   [% ShowCourseReservesHeader = 1 %]
25
                    [% ShowCourseReservesHeader = 1 %]
26
               [% END %]
26
                [% END %]
27
           [% END %]
27
            [% END %]
28
        [% END %]
28
        [% END %]
29
    [% END %]
29
    [% END %]
30
[% END %]
30
[% END %]
31
31
32
[% INCLUDE 'doc-head-open.inc' %]
32
[% INCLUDE 'doc-head-open.inc' %]
33
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog &rsaquo; Details for: [% INCLUDE 'biblio-title-head.inc' %]</title>
33
    <title>
34
[% INCLUDE 'doc-head-close.inc' %]
34
    [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog &rsaquo; Details for: [% INCLUDE 'biblio-title-head.inc' %]
35
    </title>
36
    [% INCLUDE 'doc-head-close.inc' %]
35
    [% Asset.css("lib/emoji-picker/css/emoji.css") | $raw %]
37
    [% Asset.css("lib/emoji-picker/css/emoji.css") | $raw %]
36
    [% IF ( Koha.Preference('OPACShowMusicalInscripts') ) %]
38
    [% IF ( Koha.Preference('OPACShowMusicalInscripts') ) %]
37
        [% Asset.css("lib/verovio/midiplayer.css") | $raw %]
39
        [% Asset.css("lib/verovio/midiplayer.css") | $raw %]
Lines 43-49 Link Here
43
45
44
<div class="main">
46
<div class="main">
45
    <ul class="breadcrumb">
47
    <ul class="breadcrumb">
46
        <li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">&rsaquo;</span></li>
48
        <li><a href="/cgi-bin/koha/opac-main.pl">Home</a><span class="divider">&rsaquo;</span></li>
47
        <li><a href="#"><span>Details for: </span>[% INCLUDE 'biblio-title.inc' %]</a></li>
49
        <li><a href="#"><span>Details for: </span>[% INCLUDE 'biblio-title.inc' %]</a></li>
48
    </ul>
50
    </ul>
49
51
Lines 51-57 Link Here
51
        <div class="row-fluid">
53
        <div class="row-fluid">
52
            <div class="span9">
54
            <div class="span9">
53
                <div id="catalogue_detail_biblio" class="maincontent">
55
                <div id="catalogue_detail_biblio" class="maincontent">
54
55
                    <div id="bookcover">
56
                    <div id="bookcover">
56
                    [% IF ( OPACLocalCoverImages ) %]
57
                    [% IF ( OPACLocalCoverImages ) %]
57
                        <div title="[% biblio.biblionumber | html %]" class="[% biblio.biblionumber | html %]" id="local-thumbnail-preview"></div>
58
                        <div title="[% biblio.biblionumber | html %]" class="[% biblio.biblionumber | html %]" id="local-thumbnail-preview"></div>
Lines 81-94 Link Here
81
                    [% IF ( GoogleJackets ) %]
82
                    [% IF ( GoogleJackets ) %]
82
                        <div title="[% biblio.biblionumber | html %]" class="[% normalized_isbn | html %]" id="gbs-thumbnail-preview"></div>
83
                        <div title="[% biblio.biblionumber | html %]" class="[% normalized_isbn | html %]" id="gbs-thumbnail-preview"></div>
83
                    [% END %]
84
                    [% END %]
85
84
                    [% IF ( Koha.Preference('OpacCoce') && Koha.Preference('CoceProviders') ) %]
86
                    [% IF ( Koha.Preference('OpacCoce') && Koha.Preference('CoceProviders') ) %]
85
                      [% coce_id = normalized_ean || normalized_isbn | html %]
87
                        [% coce_id = normalized_ean || normalized_isbn | html %]
86
                      <div title="[% biblio.biblionumber | html %]" class="[% coce_id | html %]" id="coce-thumbnail-preview"></div>
88
                        <div title="[% biblio.biblionumber | html %]" class="[% coce_id | html %]" id="coce-thumbnail-preview"></div>
87
                    [% END %]
89
                    [% END %]
90
88
                    [% IF OpenLibraryCovers %]
91
                    [% IF OpenLibraryCovers %]
89
                        <div title="[% biblio.biblionumber | html %]" class="[% normalized_isbn | html %]" id="openlibrary-thumbnail-preview"></div>
92
                        <div title="[% biblio.biblionumber | html %]" class="[% normalized_isbn | html %]" id="openlibrary-thumbnail-preview"></div>
90
                    [% END %]
93
                    [% END %]
94
91
                    [% bt_id = ( normalized_upc || normalized_isbn ) %]
95
                    [% bt_id = ( normalized_upc || normalized_isbn ) %]
96
92
                    [% IF ( BakerTaylorEnabled && bt_id ) %]
97
                    [% IF ( BakerTaylorEnabled && bt_id ) %]
93
                        [% IF BakerTaylorBookstoreURL %]
98
                        [% IF BakerTaylorBookstoreURL %]
94
                            [% IF ( OPACURLOpenInNewWindow ) %]
99
                            [% IF ( OPACURLOpenInNewWindow ) %]
Lines 100-105 Link Here
100
                            <img alt="See Baker &amp; Taylor" src="[% BakerTaylorImageURL | html %][% bt_id | html %]" />
105
                            <img alt="See Baker &amp; Taylor" src="[% BakerTaylorImageURL | html %][% bt_id | html %]" />
101
                        [% END %]
106
                        [% END %]
102
                    [% END %]
107
                    [% END %]
108
103
                    [% IF Koha.Preference('OPACCustomCoverImages') AND Koha.Preference('CustomCoverImagesURL') %]
109
                    [% IF Koha.Preference('OPACCustomCoverImages') AND Koha.Preference('CustomCoverImagesURL') %]
104
                         [% IF ( OPACURLOpenInNewWindow ) %]
110
                         [% IF ( OPACURLOpenInNewWindow ) %]
105
                            <a class="custom_cover_image" href="[% biblio.custom_cover_image_url | url %]" target="_blank" rel="noreferrer"><img alt="Cover image" src="[% biblio.custom_cover_image_url | url %]" /></a>
111
                            <a class="custom_cover_image" href="[% biblio.custom_cover_image_url | url %]" target="_blank" rel="noreferrer"><img alt="Cover image" src="[% biblio.custom_cover_image_url | url %]" /></a>
Lines 127-140 Link Here
127
                        <h1 class="title">[% INCLUDE 'biblio-title.inc' %]</h1>
133
                        <h1 class="title">[% INCLUDE 'biblio-title.inc' %]</h1>
128
                        [% IF ( author ) %]<h5 class="author">by <a class="contributors" href="/cgi-bin/koha/opac-search.pl?q=au:[% author |url %]">[% author | html %]</a></h5>[% END %]
134
                        [% IF ( author ) %]<h5 class="author">by <a class="contributors" href="/cgi-bin/koha/opac-search.pl?q=au:[% author |url %]">[% author | html %]</a></h5>[% END %]
129
135
130
                        <span class="results_summary">[% UNLESS ( item_level_itypes ) %]
136
                        <span class="results_summary">
131
                            [
137
                            [% UNLESS ( item_level_itypes ) %]
132
                            [% IF ( description ) %]
138
                                [
133
                                [% description | html %]
139
                                    [% IF ( description ) %]
134
                            [% ELSE %]
140
                                        [% description | html %]
135
                                [% itemtype | html %]
141
                                    [% ELSE %]
142
                                        [% itemtype | html %]
143
                                    [% END %]
144
                                ]
136
                            [% END %]
145
                            [% END %]
137
                            ] [% END %]
146
138
                            [% IF ( unititle ) %], [% unititle | html %][% END %]
147
                            [% IF ( unititle ) %], [% unititle | html %][% END %]
139
                        </span>
148
                        </span>
140
149
Lines 145-164 Link Here
145
                                    [% FOREACH MARCAUTHOR_SUBFIELDS_LOO IN MARCAUTHOR.MARCAUTHOR_SUBFIELDS_LOOP %]
154
                                    [% FOREACH MARCAUTHOR_SUBFIELDS_LOO IN MARCAUTHOR.MARCAUTHOR_SUBFIELDS_LOOP %]
146
                                        [% MARCAUTHOR_SUBFIELDS_LOO.separator | html %]
155
                                        [% MARCAUTHOR_SUBFIELDS_LOO.separator | html %]
147
                                        [% IF ( MARCAUTHOR.authoritylink ) %]
156
                                        [% IF ( MARCAUTHOR.authoritylink ) %]
148
                                            <a title="‡[% MARCAUTHOR_SUBFIELDS_LOO.code | html %] [% MARCAUTHOR_SUBFIELDS_LOO.value | html %]" class="contributors authority_link" data-authid="[% MARCAUTHOR.authoritylink | html %]" href="/cgi-bin/koha/opac-search.pl?q=[% FOREACH link_loo IN MARCAUTHOR_SUBFIELDS_LOO.link_loop %][% link_loo.operator |url %][% link_loo.limit |url %]:[% link_loo.link |url %][% END %]">
157
                                            <a title="‡[% MARCAUTHOR_SUBFIELDS_LOO.code | html %][% MARCAUTHOR_SUBFIELDS_LOO.value | html %]" class="contributors authority_link" data-authid="[% MARCAUTHOR.authoritylink | html %]" href="/cgi-bin/koha/opac-search.pl?q=[% FOREACH link_loo IN MARCAUTHOR_SUBFIELDS_LOO.link_loop %][% link_loo.operator |url %][% link_loo.limit |url %]:[% link_loo.link |url %][% END %]">
149
                                        [% ELSE %]
158
                                        [% ELSE %]
150
                                            <a title="‡[% MARCAUTHOR_SUBFIELDS_LOO.code | html %] [% MARCAUTHOR_SUBFIELDS_LOO.value | html %]" class="contributors" href="/cgi-bin/koha/opac-search.pl?q=[% FOREACH link_loo IN MARCAUTHOR_SUBFIELDS_LOO.link_loop %][% link_loo.operator |url %][% link_loo.limit |url %]:[% link_loo.link |url %][% END %]">
159
                                            <a title="‡[% MARCAUTHOR_SUBFIELDS_LOO.code | html %][% MARCAUTHOR_SUBFIELDS_LOO.value | html %]" class="contributors" href="/cgi-bin/koha/opac-search.pl?q=[% FOREACH link_loo IN MARCAUTHOR_SUBFIELDS_LOO.link_loop %][% link_loo.operator |url %][% link_loo.limit |url %]:[% link_loo.link |url %][% END %]">
151
                                        [% END %]
160
                                        [% END %]
152
                                        [% MARCAUTHOR_SUBFIELDS_LOO.value | html %]</a>
161
                                        [% MARCAUTHOR_SUBFIELDS_LOO.value | html %]</a>
153
                                    [% END %]
162
                                    [% END %]
154
                                    [% IF (MARCAUTHOR.authoritylink) %]
163
                                    [% IF (MARCAUTHOR.authoritylink) %]
155
                                        <a class="authlink" href="/cgi-bin/koha/opac-authoritiesdetail.pl?authid=[% MARCAUTHOR.authoritylink | html %]"><i class="fa fa-search" aria-hidden="true"></i></a>
164
                                        <a class="authlink" href="/cgi-bin/koha/opac-authoritiesdetail.pl?authid=[% MARCAUTHOR.authoritylink | html %]"><i class="fa fa-search" aria-hidden="true"></i></a>
156
                                    [% END %]
165
                                    [% END %]
166
157
                                    [% IF IDREF and MARCAUTHOR.unimarc3 %]
167
                                    [% IF IDREF and MARCAUTHOR.unimarc3 %]
158
                                        <a href="/cgi-bin/koha/opac-idref.pl?unimarc3=[% MARCAUTHOR.unimarc3 | uri %]" title="IdRef" rel="gb_page_center[600,500]">IdRef</a>
168
                                        <a href="/cgi-bin/koha/opac-idref.pl?unimarc3=[% MARCAUTHOR.unimarc3 | uri %]" title="IdRef" rel="gb_page_center[600, 500]">IdRef</a>
159
                                    [% END %]
169
                                    [% END %]
170
160
                                    [% UNLESS ( loop.last ) %]|[% END %]
171
                                    [% UNLESS ( loop.last ) %]|[% END %]
161
                                [% END # /FOREACH MARCAUTHORS %]
172
                                [% END # / FOREACH MARCAUTHORS %]
162
                            </div>
173
                            </div>
163
                        [% END # IF MARCAUTHORS %]
174
                        [% END # IF MARCAUTHORS %]
164
175
Lines 169-174 Link Here
169
                                        [% IF ( MARCSERIES_SUBFIELDS_LOO.value ) %]
180
                                        [% IF ( MARCSERIES_SUBFIELDS_LOO.value ) %]
170
                                            <a href="/cgi-bin/koha/opac-search.pl?q=se:[% MARCSERIES_SUBFIELDS_LOO.value |url %]">[% MARCSERIES_SUBFIELDS_LOO.value | html %]</a>
181
                                            <a href="/cgi-bin/koha/opac-search.pl?q=se:[% MARCSERIES_SUBFIELDS_LOO.value |url %]">[% MARCSERIES_SUBFIELDS_LOO.value | html %]</a>
171
                                        [% END %]
182
                                        [% END %]
183
172
                                        [% IF ( MARCSERIES_SUBFIELDS_LOO.volumenum ) %]
184
                                        [% IF ( MARCSERIES_SUBFIELDS_LOO.volumenum ) %]
173
                                            . [% MARCSERIES_SUBFIELDS_LOO.volumenum | html %]
185
                                            . [% MARCSERIES_SUBFIELDS_LOO.volumenum | html %]
174
                                        [% END %]
186
                                        [% END %]
Lines 176-196 Link Here
176
                                    [% UNLESS ( loop.last ) %]|[% END %]
188
                                    [% UNLESS ( loop.last ) %]|[% END %]
177
                                [% END # / FOREACH MARCSERIES %]
189
                                [% END # / FOREACH MARCSERIES %]
178
                            </span>
190
                            </span>
179
                        [% END # /MARCSERIES %]
191
                        [% END # / MARCSERIES %]
180
192
181
                        [% IF ( editionstatement ) %]
193
                        [% IF ( editionstatement ) %]
182
                            <span class="results_summary edition"><span class="label">Edition statement:</span>[% editionstatement | html %][% IF ( editionresponsibility ) %]/[% editionresponsibility | html %][% END %]</span>
194
                            <span class="results_summary edition"><span class="label">Edition statement:</span>[% editionstatement | html %][% IF ( editionresponsibility ) %]/[% editionresponsibility | html %][% END %]</span>
183
                        [% END %]
195
                        [% END %]
196
184
                        [% IF ( publishercode ) %]
197
                        [% IF ( publishercode ) %]
185
                            <span class="results_summary publisher"><span class="label">Published by :</span>
198
                            <span class="results_summary publisher"><span class="label">Published by :</span>
186
                                <a href="/cgi-bin/koha/opac-search.pl?q=pb:[% publishercode |url %] ">
199
                                <a href="/cgi-bin/koha/opac-search.pl?q=pb:[% publishercode |url %] ">
187
                                    [% publishercode | html %]
200
                                    [% publishercode | html %]
188
                                </a> [% IF ( place ) %]([% place | html %])[% END %] [% IF ( publicationyear ) %], [% publicationyear | html %][% END %]
201
                                </a>
202
                                [% IF ( place ) %]([% place | html %])[% END %]
203
                                [% IF ( publicationyear ) %], [% publicationyear | html %][% END %]
189
                            </span>
204
                            </span>
190
                        [% END %]
205
                        [% END %]
191
206
192
                        [% IF ( pages ) %]
207
                        [% IF ( pages ) %]
193
                            <span class="results_summary physical"><span class="label">Physical details:</span> [% pages | html %] [% illus | html %] [% size | html %]</span>
208
                            <span class="results_summary physical"><span class="label">Physical details:</span>[% pages | html %][% illus | html %][% size | html %]</span>
194
                        [% END %]
209
                        [% END %]
195
210
196
                        [% IF ( MARCISBNS ) %]
211
                        [% IF ( MARCISBNS ) %]
Lines 208-215 Link Here
208
                        [% IF ( collectiontitle ) %]
223
                        [% IF ( collectiontitle ) %]
209
                            <span class="results_summary collection"><span class="label">Collection: </span>
224
                            <span class="results_summary collection"><span class="label">Collection: </span>
210
                                [% collectiontitle | html %]
225
                                [% collectiontitle | html %]
211
                                [% IF ( collectionissn ) %] [% ', ISSN ' _  collectionissn | html %][% END %]
226
                                [% IF ( collectionissn ) %][% ', ISSN ' _  collectionissn | html %][% END %]
212
                                [% IF ( collectionvolume ) %] [% ' ; ' _ collectionvolume | html %] [% END %]
227
228
                                [% IF ( collectionvolume ) %][% ' ; ' _ collectionvolume | html %][% END %]
213
229
214
                            </span>
230
                            </span>
215
                        [% END %]
231
                        [% END %]
Lines 225-245 Link Here
225
                        [% IF ( MARCSUBJCTS ) %]
241
                        [% IF ( MARCSUBJCTS ) %]
226
                            <div class="results_summary subjects">
242
                            <div class="results_summary subjects">
227
                                <span class="label">Subject(s):</span>
243
                                <span class="label">Subject(s):</span>
228
229
                                [% FOREACH MARCSUBJCT IN MARCSUBJCTS %]
244
                                [% FOREACH MARCSUBJCT IN MARCSUBJCTS %]
230
                                    [% subjectsloop = loop %]
245
                                    [% subjectsloop = loop %]
231
                                    [% FOREACH SUBFIELD IN MARCSUBJCT.MARCSUBJECT_SUBFIELDS_LOOP %]
246
                                    [% FOREACH SUBFIELD IN MARCSUBJCT.MARCSUBJECT_SUBFIELDS_LOOP %]
232
                                        [% SUBFIELD.separator | html %]
247
                                        [% SUBFIELD.separator | html %]
233
                                        <a title="[% '$' _ SUBFIELD.code _ ' ' _ SUBFIELD.value | html %]" class="subject" href="/cgi-bin/koha/opac-search.pl?q=[% FOREACH link_loo IN SUBFIELD.link_loop %][% link_loo.operator |url %][% link_loo.limit |url %]:[% link_loo.link |url %][% END %]">[% SUBFIELD.value | html %]</a>
248
                                        <a title="[% '$' _ SUBFIELD.code _ ' ' _ SUBFIELD.value | html %]" class="subject" href="/cgi-bin/koha/opac-search.pl?q=[% FOREACH link_loo IN SUBFIELD.link_loop %][% link_loo.operator |url %][% link_loo.limit |url %]:[% link_loo.link |url %][% END %]">[% SUBFIELD.value | html %]</a>
234
                                    [% END %]
249
                                    [% END %]
250
235
                                    [% IF (MARCSUBJCT.authoritylink) %]
251
                                    [% IF (MARCSUBJCT.authoritylink) %]
236
                                        <a class="authlink" href="/cgi-bin/koha/opac-authoritiesdetail.pl?authid=[% MARCSUBJCT.authoritylink | html %]"><i class="fa fa-search" aria-hidden="true"></i></a>
252
                                        <a class="authlink" href="/cgi-bin/koha/opac-authoritiesdetail.pl?authid=[% MARCSUBJCT.authoritylink | html %]"><i class="fa fa-search" aria-hidden="true"></i></a>
237
                                    [% END %]
253
                                    [% END %]
254
238
                                    [% UNLESS ( loop.last ) %] | [% END %]
255
                                    [% UNLESS ( loop.last ) %] | [% END %]
239
                                [% END # / FOREACH MARCSUBJCTS %]
256
                                [% END # / FOREACH MARCSUBJCTS %]
240
                            </div>
257
                            </div>
241
                        [% ELSE # /IF MARCSUBJCTS %]
258
                        [% ELSE # / IF MARCSUBJCTS %]
242
                            [% IF ( subjects ) %]<span class="results_summary subjects"><span class="label">Subject(s):</span> [% FOREACH subject IN subjects %]<a class="subject" href="/cgi-bin/koha/opac-search.pl?q=su:[% subject.subject |url %]">[% subject.subject | html %]</a> | [% END %]</span>[% END %]
259
                            [% IF ( subjects ) %]<span class="results_summary subjects"><span class="label">Subject(s):</span>[% FOREACH subject IN subjects %]<a class="subject" href="/cgi-bin/koha/opac-search.pl?q=su:[% subject.subject |url %]">[% subject.subject | html %]</a> | [% END %]</span>[% END %]
243
                        [% END %]
260
                        [% END %]
244
261
245
                        [% IF ( copyrightdate ) %]
262
                        [% IF ( copyrightdate ) %]
Lines 263-293 Link Here
263
                            <div class="results_summary online_resources"><span class="label">Online resources:</span>
280
                            <div class="results_summary online_resources"><span class="label">Online resources:</span>
264
                                <ul>
281
                                <ul>
265
                                    [% FOREACH MARCurl IN MARCURLS %]
282
                                    [% FOREACH MARCurl IN MARCURLS %]
266
                                        <li>[% IF ( MARCurl.part ) %][% MARCurl.part | html %]<br />[% END %]
283
                                        <li>
284
                                            [% IF ( MARCurl.part ) %][% MARCurl.part | html %]<br />[% END %]
267
285
268
                                        [% IF ( OPACURLOpenInNewWindow ) %]
286
                                            [% IF ( OPACURLOpenInNewWindow ) %]
269
                                            [% IF trackclicks == 'track' || trackclicks == 'anonymous' %]
287
                                                [% IF trackclicks == 'track' || trackclicks == 'anonymous' %]
270
                                                <a href="/cgi-bin/koha/tracklinks.pl?uri=[% MARCurl.MARCURL | uri %]&amp;biblionumber=[% biblio.biblionumber | uri %]" title="[% MARCurl.MARCURL | html %]" target="_blank" rel="noreferrer">
288
                                                    <a href="/cgi-bin/koha/tracklinks.pl?uri=[% MARCurl.MARCURL | uri %]&amp;biblionumber=[% biblio.biblionumber | uri %]" title="[% MARCurl.MARCURL | html %]" target="_blank" rel="noreferrer">
271
                                            [% ELSE %]
289
                                                [% ELSE %]
272
                                                <a href="[% MARCurl.MARCURL | url %]" title="[% MARCurl.MARCURL | html %]" target="_blank" rel="noreferrer">
290
                                                    <a href="[% MARCurl.MARCURL | url %]" title="[% MARCurl.MARCURL | html %]" target="_blank" rel="noreferrer">
273
                                            [% END %]
291
                                                [% END %]
274
                                        [% ELSE %]
275
                                            [% IF trackclicks == 'track' || trackclicks == 'anonymous' %]
276
                                                <a href="/cgi-bin/koha/tracklinks.pl?uri=[% MARCurl.MARCURL | uri %]&amp;biblionumber=[% biblio.biblionumber | uri %]" title="[% MARCurl.MARCURL | html %]">
277
                                            [% ELSE %]
292
                                            [% ELSE %]
278
                                                <a href="[% MARCurl.MARCURL | url %]" title="[% MARCurl.MARCURL | html %]">
293
                                                [% IF trackclicks == 'track' || trackclicks == 'anonymous' %]
279
                                            [% END %]
294
                                                    <a href="/cgi-bin/koha/tracklinks.pl?uri=[% MARCurl.MARCURL | uri %]&amp;biblionumber=[% biblio.biblionumber | uri %]" title="[% MARCurl.MARCURL | html %]">
280
                                        [% END %]
295
                                                [% ELSE %]
281
                                        [% MARCurl.linktext | html %]</a>
296
                                                    <a href="[% MARCurl.MARCURL | url %]" title="[% MARCurl.MARCURL | html %]">
282
                                            [% IF ( MARCurl.notes ) %]
297
                                                [% END %]
283
                                                <ul>
284
                                                    [% FOREACH note IN MARCurl.notes %]
285
                                                        <li>[% note.note | html %]</li>
286
                                                    [% END %]
287
                                                </ul>
288
                                            [% END %]
298
                                            [% END %]
299
                                            [% MARCurl.linktext | html %]</a>
300
                                                [% IF ( MARCurl.notes ) %]
301
                                                    <ul>
302
                                                        [% FOREACH note IN MARCurl.notes %]
303
                                                            <li>[% note.note | html %]</li>
304
                                                        [% END %]
305
                                                    </ul>
306
                                                [% END %]
289
                                        </li>
307
                                        </li>
290
                                    [% END # /FOREACH MARCURLS %]
308
                                    [% END # / FOREACH MARCURLS %]
291
                                </ul>
309
                                </ul>
292
                            </div>
310
                            </div>
293
                        [% END # / IF MARCURLS %]
311
                        [% END # / IF MARCURLS %]
Lines 322-335 Link Here
322
                                <span class="label">Tags from this library:</span>
340
                                <span class="label">Tags from this library:</span>
323
                                <ul id="tagslist">
341
                                <ul id="tagslist">
324
                                    [% FOREACH TagLoo IN TagLoop %]
342
                                    [% FOREACH TagLoo IN TagLoop %]
325
                                        <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>
343
                                        <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>
326
                                        [% IF ( loop.last ) %][% ELSE %], [% END %]
344
                                        [% IF ( loop.last ) %][% ELSE %], [% END %]
327
                                        </li>
345
                                        </li>
328
                                    [% END %]
346
                                    [% END %]
329
                                </ul>
347
                                </ul>
330
                            [% ELSE %]
348
                            [% ELSE %]
331
                                <span class="label">Tags from this library:</span> <span class="notags">No tags from this library for this title.</span>
349
                                <span class="label">Tags from this library:</span><span class="notags">No tags from this library for this title.</span>
332
                            [% END %]
350
                            [% END %]
351
333
                            [% IF ( TagsInputEnabled ) %]
352
                            [% IF ( TagsInputEnabled ) %]
334
                                [% IF ( loggedinusername ) %]
353
                                [% IF ( loggedinusername ) %]
335
                                    <form id="tagform[% biblio.biblionumber | html %]" method="post" action="/cgi-bin/koha/opac-tags.pl" style="display:none;">
354
                                    <form id="tagform[% biblio.biblionumber | html %]" method="post" action="/cgi-bin/koha/opac-tags.pl" style="display:none;">
Lines 363-369 Link Here
363
                                [% END %]
382
                                [% END %]
364
                            [% END # / IF TagsInputEnabled %]
383
                            [% END # / IF TagsInputEnabled %]
365
                        </div>
384
                        </div>
366
                    [% END # /IF TagsShowEnabled %]
385
                    [% END # / IF TagsShowEnabled %]
367
386
368
                    [% IF ( SyndeticsEnabled ) %]
387
                    [% IF ( SyndeticsEnabled ) %]
369
                        [% IF ( SyndeticsSeries && SyndeticsSERIES1Exists ) %]
388
                        [% IF ( SyndeticsSeries && SyndeticsSERIES1Exists ) %]
Lines 371-377 Link Here
371
                                <span class="label">Series information:</span>
390
                                <span class="label">Series information:</span>
372
                                <a target="_blank" rel="noreferrer" href="https://secure.syndetics.com/ffseries.aspx?isbn=[% normalized_isbn | html %]&amp;type=series&amp;num=1&amp;client=[% SyndeticsClientCode | html %][% IF ( normalized_upc ) %]&amp;upc=[% normalized_upc | html %][% END %][% IF ( normalized_oclc ) %]&amp;oclc=[% normalized_oclc | html %][% END %]">Click to open in new window</a>
391
                                <a target="_blank" rel="noreferrer" href="https://secure.syndetics.com/ffseries.aspx?isbn=[% normalized_isbn | html %]&amp;type=series&amp;num=1&amp;client=[% SyndeticsClientCode | html %][% IF ( normalized_upc ) %]&amp;upc=[% normalized_upc | html %][% END %][% IF ( normalized_oclc ) %]&amp;oclc=[% normalized_oclc | html %][% END %]">Click to open in new window</a>
373
                            </span>
392
                            </span>
374
                        [% END # / IF SyndeticsSeries && SyndeticsSERIES1Exists%]
393
                        [% END # / IF SyndeticsSeries && SyndeticsSERIES1Exists %]
375
                        [% IF ( SyndeticsAVPROFILEExists ) %]
394
                        [% IF ( SyndeticsAVPROFILEExists ) %]
376
                            <span class="results_summary">
395
                            <span class="results_summary">
377
                                <span class="label">Audiovisual profile:</span>
396
                                <span class="label">Audiovisual profile:</span>
Lines 392-398 Link Here
392
                                <a target="_blank" rel="noreferrer" href="https://secure.syndetics.com/ffawards.aspx?isbn=[% normalized_isbn | html %]&amp;type=awards&amp;client=[% SyndeticsClientCode | html %][% IF ( normalized_upc ) %]&amp;upc=[% normalized_upc | html %][% END %][% IF ( normalized_oclc ) %]&amp;oclc=[% normalized_oclc | html %][% END %]">Click to open in new window</a>
411
                                <a target="_blank" rel="noreferrer" href="https://secure.syndetics.com/ffawards.aspx?isbn=[% normalized_isbn | html %]&amp;type=awards&amp;client=[% SyndeticsClientCode | html %][% IF ( normalized_upc ) %]&amp;upc=[% normalized_upc | html %][% END %][% IF ( normalized_oclc ) %]&amp;oclc=[% normalized_oclc | html %][% END %]">Click to open in new window</a>
393
                            </span>
412
                            </span>
394
                        [% END # / IF SyndeticsAwards && SyndeticsAWARDS1Exists %]
413
                        [% END # / IF SyndeticsAwards && SyndeticsAWARDS1Exists %]
395
                    [% END # / IF SyndeticsEnabled%]
414
                    [% END # / IF SyndeticsEnabled %]
396
415
397
                    [% IF ( OpacStarRatings != 'disable' ) %]
416
                    [% IF ( OpacStarRatings != 'disable' ) %]
398
                        <form method="post" action="/cgi-bin/koha/opac-ratings.pl">
417
                        <form method="post" action="/cgi-bin/koha/opac-ratings.pl">
Lines 406-411 Link Here
406
                                [% ELSE %]
425
                                [% ELSE %]
407
                                    <select id="star_rating" name="rating" data-rating-enabled="0" disabled="disabled" autocomplete="off">
426
                                    <select id="star_rating" name="rating" data-rating-enabled="0" disabled="disabled" autocomplete="off">
408
                                [% END %]
427
                                [% END %]
428
409
                                    [% IF ( rating_avg_int == 0 ) %]
429
                                    [% IF ( rating_avg_int == 0 ) %]
410
                                        <option value="" selected="selected"></option>
430
                                        <option value="" selected="selected"></option>
411
                                    [% END %]
431
                                    [% END %]
Lines 462-470 Link Here
462
                        <div id="BW_critiques"></div>
482
                        <div id="BW_critiques"></div>
463
                        <div id="BW_critiques_pro"></div>
483
                        <div id="BW_critiques_pro"></div>
464
                        <div id="BW_citations"></div>
484
                        <div id="BW_citations"></div>
465
                    [% END # / IF Babeltheque%]
485
                    [% END # / IF Babeltheque %]
466
486
467
                </div> <!-- / #catalogue_detail_biblio -->
487
                </div><!-- / #catalogue_detail_biblio -->
468
488
469
                <div id="bibliodescriptions" class="toptabs">
489
                <div id="bibliodescriptions" class="toptabs">
470
                    <ul>
490
                    <ul>
Lines 473-484 Link Here
473
                        [% ELSE %]
493
                        [% ELSE %]
474
                            <li id="tab_holdings">
494
                            <li id="tab_holdings">
475
                        [% END %]
495
                        [% END %]
476
                        [% BLOCK holding_tab_title %][% IF SeparateHoldings %]<span>[% LoginBranchname | html %] holdings</span>[% ELSE %]<span>Holdings</span>[% END %][% END %]
496
                        [% BLOCK holding_tab_title %][% IF ( SeparateHoldings ) %]<span>[% LoginBranchname | html %] holdings</span>[% ELSE %]<span>Holdings</span>[% END %][% END %]
477
                            <a href="#holdings">[% PROCESS holding_tab_title %] [% UNLESS too_many_items %][% ' ( ' _ (itemloop.size || 0) _ ' )' | html %][% END %]</a>
497
                            <a href="#holdings">[% PROCESS holding_tab_title %][% UNLESS too_many_items %][% ' ( ' _ (itemloop.size || 0) _ ' )' | html %][% END %]</a>
478
                        </li>
498
                        </li>
479
                        [% IF (SeparateHoldings) %]
499
                        [% IF ( SeparateHoldings ) %]
480
                            <li><a href="#otherholdings">Other holdings [% ' ( ' _ (otheritemloop.size || 0) _ ' )' | html %]</a></li>
500
                            <li><a href="#otherholdings">Other holdings [% ' ( ' _ (otheritemloop.size || 0) _ ' )' | html %]</a></li>
481
                        [% END %]
501
                        [% END %]
502
482
                        [% IF ( MARCNOTES || notes || ( SyndeticsEnabled && SyndeticsSummary && SYNDETICS_SUMMARY )) %]
503
                        [% IF ( MARCNOTES || notes || ( SyndeticsEnabled && SyndeticsSummary && SYNDETICS_SUMMARY )) %]
483
                            [% SET title_notes_count = 0 %]
504
                            [% SET title_notes_count = 0 %]
484
                            [% IF MARCNOTES %]
505
                            [% IF MARCNOTES %]
Lines 486-503 Link Here
486
                            [% ELSIF notes %]
507
                            [% ELSIF notes %]
487
                                [% SET title_notes_count = 1 %]
508
                                [% SET title_notes_count = 1 %]
488
                            [% END %]
509
                            [% END %]
510
489
                            [% IF SYNDETICS_SUMMARY %][% SET title_notes_count = title_notes_count + 1 %][% END %]
511
                            [% IF SYNDETICS_SUMMARY %][% SET title_notes_count = title_notes_count + 1 %][% END %]
490
                            <li id="tab_descriptions"> <a href="#descriptions">Title notes ( [% title_notes_count | html %] )</a></li>
512
                            <li id="tab_descriptions"><a href="#descriptions">Title notes ( [% title_notes_count | html %] )</a></li>
491
                        [% END %]
513
                        [% END %]
514
492
                        [% IF ( SYNDETICS_TOC ) %]
515
                        [% IF ( SYNDETICS_TOC ) %]
493
                            <li id="tab_toc"> <a href="#toc">TOC</a></li>
516
                            <li id="tab_toc"><a href="#toc">TOC</a></li>
494
                        [% END %]
517
                        [% END %]
518
495
                        [% IF ( SyndeticsEnabled ) %]
519
                        [% IF ( SyndeticsEnabled ) %]
496
                            [% IF ( SyndeticsExcerpt && SYNDETICS_EXCERPT ) %]
520
                            [% IF ( SyndeticsExcerpt && SYNDETICS_EXCERPT ) %]
497
                                <li id="tab_excerpt"> <a href="#excerpt">Excerpt</a></li>
521
                                <li id="tab_excerpt"><a href="#excerpt">Excerpt</a></li>
498
                            [% END %]
522
                            [% END %]
523
499
                            [% IF ( ( SyndeticsReviews && SYNDETICS_REVIEWS ) || ( LibraryThingForLibrariesTabbedView && LibraryThingForLibrariesID) ) %]
524
                            [% IF ( ( SyndeticsReviews && SYNDETICS_REVIEWS ) || ( LibraryThingForLibrariesTabbedView && LibraryThingForLibrariesID) ) %]
500
                                <li id="tab_reviews"> <a href="#reviews">Reviews</a></li>
525
                                <li id="tab_reviews"><a href="#reviews">Reviews</a></li>
501
                                [% IF ( LibraryThingForLibrariesID ) %]
526
                                [% IF ( LibraryThingForLibrariesID ) %]
502
                                    <li id="tab_LTFLreviews">
527
                                    <li id="tab_LTFLreviews">
503
                                        <script src="https://www.librarything.com/forlibraries/widget.js?id=[% LibraryThingForLibrariesID | html %]"></script>
528
                                        <script src="https://www.librarything.com/forlibraries/widget.js?id=[% LibraryThingForLibrariesID | html %]"></script>
Lines 505-518 Link Here
505
                                    </li>
530
                                    </li>
506
                                [% END %]
531
                                [% END %]
507
                            [% END %]
532
                            [% END %]
533
508
                            [% IF ( SyndeticsAuthorNotes && SYNDETICS_ANOTES ) %]
534
                            [% IF ( SyndeticsAuthorNotes && SYNDETICS_ANOTES ) %]
509
                                <li id="tab_anotes"> <a href="#anotes">About the author</a></li>
535
                                <li id="tab_anotes"><a href="#anotes">About the author</a></li>
510
                            [% END %]
536
                            [% END %]
511
                        [% END # / IF SyndeticsEnabled %]
537
                        [% END # / IF SyndeticsEnabled %]
512
538
513
                        [% IF ( LibraryThingForLibrariesID && LibraryThingForLibrariesTabbedView ) %]
539
                        [% IF ( LibraryThingForLibrariesID && LibraryThingForLibrariesTabbedView ) %]
514
                            <li id="tab_LFTLSimilarItems"> <a href="#LFTLSimilarItems">Similar items</a></li>
540
                            <li id="tab_LFTLSimilarItems"><a href="#LFTLSimilarItems">Similar items</a></li>
515
                            <li id="tab_LTFLTagBrowse"> <a href="#LTFLTagBrowse">Tag browser</a></li>
541
                            <li id="tab_LTFLTagBrowse"><a href="#LTFLTagBrowse">Tag browser</a></li>
516
                        [% END %]
542
                        [% END %]
517
543
518
                        [% IF ( subscriptionsnumber ) %]
544
                        [% IF ( subscriptionsnumber ) %]
Lines 527-533 Link Here
527
553
528
                        [% IF ( NovelistSelectProfile && (normalized_isbn || normalized_upc) ) %]
554
                        [% IF ( NovelistSelectProfile && (normalized_isbn || normalized_upc) ) %]
529
                            [% IF ( NovelistSelectView == 'tab') %]
555
                            [% IF ( NovelistSelectView == 'tab') %]
530
                                <li id="tab_NovelistSelect" class="NovelistSelect" style="display:none;"> <a href="#NovelistSelect">Novelist Select</a></li>
556
                                <li id="tab_NovelistSelect" class="NovelistSelect" style="display:none;"><a href="#NovelistSelect">Novelist Select</a></li>
531
                            [% END %]
557
                            [% END %]
532
                        [% END %]
558
                        [% END %]
533
559
Lines 574-580 Link Here
574
                        </div>
600
                        </div>
575
                    [% END # / IF serialcollection %]
601
                    [% END # / IF serialcollection %]
576
602
577
578
                    <div id="holdings">
603
                    <div id="holdings">
579
                        [% IF too_many_items %]
604
                        [% IF too_many_items %]
580
                            <p>This record has many physical items ([% items_count | html %]). <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblio.biblionumber | uri %]&amp;viewallitems=1">Click here to view them all.</a></p>
605
                            <p>This record has many physical items ([% items_count | html %]). <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblio.biblionumber | uri %]&amp;viewallitems=1">Click here to view them all.</a></p>
Lines 587-597 Link Here
587
                                <span>[% acquisition_details.total_quantity | html %] items are on order.</span>
612
                                <span>[% acquisition_details.total_quantity | html %] items are on order.</span>
588
                              [% END %]
613
                              [% END %]
589
                            [% END %]
614
                            [% END %]
615
590
                            [% IF holds_count.defined || priority %]
616
                            [% IF holds_count.defined || priority %]
591
                                <div id="bib_holds">
617
                                <div id="bib_holds">
592
                                    [% IF holds_count.defined %]
618
                                    [% IF holds_count.defined %]
593
                                        <span>Total holds: [% holds_count | html %]</span>
619
                                        <span>Total holds: [% holds_count | html %]</span>
594
                                    [% END %]
620
                                    [% END %]
621
595
                                    [% IF priority %]
622
                                    [% IF priority %]
596
                                        [% IF holds_count.defined %]
623
                                        [% IF holds_count.defined %]
597
                                            <span>(priority [% priority | html %])</span>
624
                                            <span>(priority [% priority | html %])</span>
Lines 604-610 Link Here
604
                        [% ELSE %]
631
                        [% ELSE %]
605
                            [% IF ( ALTERNATEHOLDINGS ) %]
632
                            [% IF ( ALTERNATEHOLDINGS ) %]
606
                                [% FOREACH ALTERNATEHOLDING IN ALTERNATEHOLDINGS %]
633
                                [% FOREACH ALTERNATEHOLDING IN ALTERNATEHOLDINGS %]
607
                                    <div id="alternateholdings"><span class="holdings_label">Holdings:</span> [% ALTERNATEHOLDING.holding | html %]</div>
634
                                    <div id="alternateholdings"><span class="holdings_label">Holdings:</span>[% ALTERNATEHOLDING.holding | html %]</div>
608
                                [% END %]
635
                                [% END %]
609
                            [% ELSE %]
636
                            [% ELSE %]
610
                                [% IF Koha.Preference('OPACAcquisitionDetails') and acquisition_details.total_quantity > 0 %]
637
                                [% IF Koha.Preference('OPACAcquisitionDetails') and acquisition_details.total_quantity > 0 %]
Lines 621-631 Link Here
621
                        [% PROCESS 'shelfbrowser.inc' %]
648
                        [% PROCESS 'shelfbrowser.inc' %]
622
                        [% INCLUDE shelfbrowser tab='holdings' %]
649
                        [% INCLUDE shelfbrowser tab='holdings' %]
623
                        <br style="clear:both;" />
650
                        <br style="clear:both;" />
624
                    </div> <!-- / #holdings -->
651
                    </div><!-- / #holdings -->
625
652
626
                    [% IF (SeparateHoldings) %]
653
                    [% IF ( SeparateHoldings ) %]
627
                        <div id="otherholdings">
654
                        <div id="otherholdings">
628
                            [% IF (otheritemloop.size) %]
655
                            [% IF ( otheritemloop.size ) %]
629
                                [% INCLUDE items_table items=otheritemloop tab="otherholdings" table_id="otherholdingst" %]
656
                                [% INCLUDE items_table items=otheritemloop tab="otherholdings" table_id="otherholdingst" %]
630
                            [% ELSE %]
657
                            [% ELSE %]
631
                                <span>No other items.</span>
658
                                <span>No other items.</span>
Lines 637-668 Link Here
637
                    [% IF ( MARCNOTES || notes || ( SyndeticsEnabled && SyndeticsSummary && SYNDETICS_SUMMARY )) %]
664
                    [% IF ( MARCNOTES || notes || ( SyndeticsEnabled && SyndeticsSummary && SYNDETICS_SUMMARY )) %]
638
                        <div id="descriptions">
665
                        <div id="descriptions">
639
                            <div class="content_set">
666
                            <div class="content_set">
667
                                [% IF ( SyndeticsEnabled && SyndeticsSummary && SYNDETICS_SUMMARY ) %]
668
                                    <h4>Enhanced descriptions from Syndetics:</h4>
669
                                    <p>[% SYNDETICS_SUMMARY | html %]</p>
670
                                [% END %]
640
671
641
                            [% IF ( SyndeticsEnabled && SyndeticsSummary && SYNDETICS_SUMMARY ) %]
672
                                [% IF ( MARCNOTES ) %]
642
                                <h4>Enhanced descriptions from Syndetics:</h4>
673
                                    <div id="marcnotes">
643
                                <p>[% SYNDETICS_SUMMARY | html %]</p>
674
                                        [% FOREACH MARCNOTE IN MARCNOTES %]
644
                            [% END %]
675
                                            <p>
645
676
                                                [% IF MARCNOTE.marcnote.match('^https?://\S+$') %]
646
                            [% IF ( MARCNOTES ) %]
677
                                                    <a href="[% MARCNOTE.marcnote | url %]">[% MARCNOTE.marcnote | html %]</a>
647
                                <div id="marcnotes">
678
                                                [% ELSE %]
648
                                [% FOREACH MARCNOTE IN MARCNOTES %]
679
                                                    [% MARCNOTE.marcnote | html | html_line_break %]
649
                                    <p>
680
                                                [% END %]
650
                                    [% IF MARCNOTE.marcnote.match('^https?://\S+$') %]
681
                                            </p>
651
                                        <a href="[% MARCNOTE.marcnote | url %]">[% MARCNOTE.marcnote | html %]</a>
682
                                        [% END %]
652
                                    [% ELSE %]
683
                                    </div>
653
                                        [% MARCNOTE.marcnote | html | html_line_break %]
684
                                [% ELSE %]
685
                                    [% IF ( notes ) %]
686
                                        <p>[% notes | html %]</p>
654
                                    [% END %]
687
                                    [% END %]
655
                                    </p>
656
                                [% END %]
657
                                </div>
658
                            [% ELSE %]
659
                                [% IF ( notes ) %]
660
                                    <p>[% notes | html %]</p>
661
                                [% END %]
688
                                [% END %]
662
                            [% END %]
663
664
                            </div>
689
                            </div>
665
                        </div> <!-- / #descriptions -->
690
                        </div><!-- / #descriptions -->
666
                    [% END # / IF MARCNOTES || notes %]
691
                    [% END # / IF MARCNOTES || notes %]
667
692
668
                    [% IF ( SyndeticsEnabled ) %]
693
                    [% IF ( SyndeticsEnabled ) %]
Lines 670-680 Link Here
670
                            <div id="toc">
695
                            <div id="toc">
671
                                <div class="content_set">
696
                                <div class="content_set">
672
                                    <h3>Table of contents provided by Syndetics</h3>
697
                                    <h3>Table of contents provided by Syndetics</h3>
673
                                        <ul>
698
                                    <ul>
674
                                            [% FOREACH SYNDETICS_TO IN SYNDETICS_TOC %]
699
                                        [% FOREACH SYNDETICS_TO IN SYNDETICS_TOC %]
675
                                                <li><b>[% SYNDETICS_TO.l | html %] [% SYNDETICS_TO.t | html %]</b>[% IF ( SYNDETICS_TO.p ) %] ([% SYNDETICS_TO.p | html %])[% END %]</li>
700
                                            <li><b>[% SYNDETICS_TO.l | html %][% SYNDETICS_TO.t | html %]</b>[% IF ( SYNDETICS_TO.p ) %] ([% SYNDETICS_TO.p | html %])[% END %]</li>
676
                                            [% END %]
701
                                        [% END %]
677
                                        </ul>
702
                                    </ul>
678
                                </div>
703
                                </div>
679
                            </div>
704
                            </div>
680
                        [% END # / IF SyndeticsTOC && SYNDETICS_TOC %]
705
                        [% END # / IF SyndeticsTOC && SYNDETICS_TOC %]
Lines 695-707 Link Here
695
                                    [% FOREACH SYNDETICS_REVIEW IN SYNDETICS_REVIEWS %]
720
                                    [% FOREACH SYNDETICS_REVIEW IN SYNDETICS_REVIEWS %]
696
                                        [% IF ( SYNDETICS_REVIEW.title ) %]
721
                                        [% IF ( SYNDETICS_REVIEW.title ) %]
697
                                            <h4>[% SYNDETICS_REVIEW.title | html %]</h4>
722
                                            <h4>[% SYNDETICS_REVIEW.title | html %]</h4>
698
                                                [% FOREACH review IN SYNDETICS_REVIEW.reviews %]
723
                                            [% FOREACH review IN SYNDETICS_REVIEW.reviews %]
699
724
                                                [% IF ( review.content ) %]
700
                                                    [% IF ( review.content ) %]
725
                                                    [% review.content | html %]
701
                                                        [% review.content | html %]
702
                                                    [% END %]
703
704
                                                [% END %]
726
                                                [% END %]
727
                                            [% END %]
705
                                        [% END %]
728
                                        [% END %]
706
                                    [% END %]
729
                                    [% END %]
707
                                </div>
730
                                </div>
Lines 740-777 Link Here
740
                                        <h3>At library: [% subscription.branchcode | html %]</h3>
763
                                        <h3>At library: [% subscription.branchcode | html %]</h3>
741
                                    [% END %]
764
                                    [% END %]
742
                                [% END %]
765
                                [% END %]
766
743
                                [% IF ( subscription.closed ) %]
767
                                [% IF ( subscription.closed ) %]
744
                                    <p class="subscription_closed">This subscription is closed.</p>
768
                                    <p class="subscription_closed">This subscription is closed.</p>
745
                                [% END %]
769
                                [% END %]
770
746
                                [% IF ( subscription.location ) %]
771
                                [% IF ( subscription.location ) %]
747
                                  <p class="subscription_location">Location: [% AuthorisedValues.GetByCode( 'LOC', subscription.location, 1 ) | html %]
772
                                  <p class="subscription_location">Location: [% AuthorisedValues.GetByCode( 'LOC', subscription.location, 1 ) | html %]
748
                                [% END %]
773
                                [% END %]
774
749
                                [% IF ( subscription.callnumber ) %]
775
                                [% IF ( subscription.callnumber ) %]
750
                                  <p class="subscription_callnumber">Call number: [% subscription.callnumber | html %]</p>
776
                                  <p class="subscription_callnumber">Call number: [% subscription.callnumber | html %]</p>
751
                                [% END %]
777
                                [% END %]
778
752
                                [% IF ( subscription.subscriptionnotes ) %]
779
                                [% IF ( subscription.subscriptionnotes ) %]
753
                                    <p class="subscription_notes">[% subscription.subscriptionnotes | html | html_line_break %] </p>
780
                                    <p class="subscription_notes">[% subscription.subscriptionnotes | html | html_line_break %]</p>
754
                                [% END %]
781
                                [% END %]
755
                                <p class="subscription_dates">Subscription from: [% subscription.histstartdate | $KohaDates %] to:[% IF ( subscription.histenddate ) %] [% subscription.histenddate | $KohaDates %] [% ELSE %] now (current)[% END %]</p>
782
                                <p class="subscription_dates">
756
                                [% IF ( subscription.letter ) %]<span class="email_notifications">
783
                                    Subscription from: [% subscription.histstartdate | $KohaDates %] to:[% IF ( subscription.histenddate ) %][% subscription.histenddate | $KohaDates %][% ELSE %] now (current)[% END %]
757
                                    [% IF ( loggedinusername ) %]
784
                                </p>
758
                                        [% IF ( subscription.hasalert ) %]
785
                                [% IF ( subscription.letter ) %]
759
                                            <span>You have subscribed to email notification on new issues. </span><a style="color:#000;" class="btn" title="Cancel email notification" href="/cgi-bin/koha/opac-alert-subscribe.pl?op=cancel&amp;subscriptionid=[% subscription.subscriptionid | html %]&amp;biblionumber=[% subscription.biblionumber | html %]">Cancel email notification</a>
786
                                    <span class="email_notifications">
787
                                        [% IF ( loggedinusername ) %]
788
                                            [% IF ( subscription.hasalert ) %]
789
                                                <span>You have subscribed to email notification on new issues. </span>
790
                                                <a style="color:#000;" class="btn" title="Cancel email notification" href="/cgi-bin/koha/opac-alert-subscribe.pl?op=cancel&amp;subscriptionid=[% subscription.subscriptionid | html %]&amp;biblionumber=[% subscription.biblionumber | html %]">Cancel email notification</a>
791
                                            [% ELSE %]
792
                                                <a style="color:#000;" class="btn" title="Subscribe to email notification on new issues" href="/cgi-bin/koha/opac-alert-subscribe.pl?subscriptionid=[% subscription.subscriptionid | html %]&amp;biblionumber=[% subscription.biblionumber | html %]">Subscribe to email notification on new issues</a>
793
                                            [% END %]
760
                                        [% ELSE %]
794
                                        [% ELSE %]
761
                                            <a style="color:#000;" class="btn" title="Subscribe to email notification on new issues" href="/cgi-bin/koha/opac-alert-subscribe.pl?subscriptionid=[% subscription.subscriptionid | html %]&amp;biblionumber=[% subscription.biblionumber | html %]">Subscribe to email notification on new issues</a>
795
                                            <span>You must log in if you want to subscribe to email notification on new issues</span>
762
                                        [% END %]
796
                                        [% END %]
763
                                    [% ELSE %]
797
                                    </span>
764
                                        <span>You must log in if you want to subscribe to email notification on new issues</span>
798
                                [% END %]
765
                                    [% END %]
799
766
                                </span>[% END %]
767
                                [% IF ( subscription.missinglist ) %]
800
                                [% IF ( subscription.missinglist ) %]
768
                                    <p class="subscription_missing">Missing issues: [% subscription.missinglist | html | html_line_break %] </p>
801
                                    <p class="subscription_missing">Missing issues: [% subscription.missinglist | html | html_line_break %]</p>
769
                                [% END %]
802
                                [% END %]
803
770
                                [% IF ( subscription.opacnote ) %]
804
                                [% IF ( subscription.opacnote ) %]
771
                                    <p class="subscription_opacnote">[% subscription.opacnote | html | html_line_break %]</p>
805
                                    <p class="subscription_opacnote">[% subscription.opacnote | html | html_line_break %]</p>
772
                                [% END %]
806
                                [% END %]
807
773
                                [% IF ( subscription.latestserials ) %]
808
                                [% IF ( subscription.latestserials ) %]
774
                                    <p class="subscription_latestissues"> The [% subscription.opacdisplaycount | html %] latest issues for this subscription:</p>
809
                                    <p class="subscription_latestissues">The [% subscription.opacdisplaycount | html %] latest issues for this subscription:</p>
775
                                    <table class="table table-bordered table-striped" id="subscriptionst">
810
                                    <table class="table table-bordered table-striped" id="subscriptionst">
776
                                        <thead>
811
                                        <thead>
777
                                        <tr>
812
                                        <tr>
Lines 783-816 Link Here
783
                                        </tr>
818
                                        </tr>
784
                                        </thead>
819
                                        </thead>
785
                                        <tbody>
820
                                        <tbody>
786
                                        [% FOREACH latestserial IN subscription.latestserials %]
821
                                            [% FOREACH latestserial IN subscription.latestserials %]
787
                                            <tr>
822
                                                <tr>
788
                                                <td class="serialseq">[% latestserial.serialseq | html %]</td>
823
                                                    <td class="serialseq">[% latestserial.serialseq | html %]</td>
789
                                                <td class="publisheddate"><span title="[% latestserial.publisheddate | html %]">[% latestserial.publisheddate | $KohaDates %]</span></td>
824
                                                    <td class="publisheddate"><span title="[% latestserial.publisheddate | html %]">[% latestserial.publisheddate | $KohaDates %]</span></td>
790
                                                <td class="planneddate"><span title="[% latestserial.planneddate | html %]">[% latestserial.planneddate | $KohaDates %]</span></td>
825
                                                    <td class="planneddate"><span title="[% latestserial.planneddate | html %]">[% latestserial.planneddate | $KohaDates %]</span></td>
791
                                                <td class="serial_status">
826
                                                    <td class="serial_status">
792
                                                    [% IF (latestserial.status1 ) %]<span>Expected</span>[% END %]
827
                                                        [% IF (latestserial.status1 ) %]<span>Expected</span>[% END %]
793
                                                    [% IF (latestserial.status2 ) %]<span>Arrived</span>[% END %]
828
                                                        [% IF (latestserial.status2 ) %]<span>Arrived</span>[% END %]
794
                                                    [% IF (latestserial.status3 ) %]<span>Late</span>[% END %]
829
                                                        [% IF (latestserial.status3 ) %]<span>Late</span>[% END %]
795
                                                    [% IF (latestserial.status4 ) %]<span>Missing</span>[% END %]
830
                                                        [% IF (latestserial.status4 ) %]<span>Missing</span>[% END %]
796
                                                        [% IF (latestserial.status41 ) %]<span>Missing (never received)</span>[% END %]
831
                                                            [% IF ( latestserial.status41 ) %]<span>Missing (never received )</span>[% END %]
797
                                                        [% IF (latestserial.status42 ) %]<span>Missing (sold out)</span>[% END %]
832
                                                            [% IF ( latestserial.status42 ) %]<span>Missing (sold out )</span>[% END %]
798
                                                        [% IF (latestserial.status43 ) %]<span>Missing (damaged)</span>[% END %]
833
                                                            [% IF ( latestserial.status43 ) %]<span>Missing (damaged )</span>[% END %]
799
                                                        [% IF (latestserial.status44 ) %]<span>Missing (lost)</span>[% END %]
834
                                                            [% IF ( latestserial.status44 ) %]<span>Missing (lost )</span>[% END %]
800
                                                    [% IF (latestserial.status5 ) %]<span>Not issued</span>[% END %]
835
                                                        [% IF (latestserial.status5 ) %]<span>Not issued</span>[% END %]
801
                                                    [% IF (latestserial.status6 ) %]<span>Delete</span>[% END %]
836
                                                        [% IF (latestserial.status6 ) %]<span>Delete</span>[% END %]
802
                                                    [% IF (latestserial.status7 ) %]<span>Claimed</span>[% END %]
837
                                                        [% IF (latestserial.status7 ) %]<span>Claimed</span>[% END %]
803
                                                    [% IF (latestserial.status8 ) %]<span>Stopped</span>[% END %]
838
                                                        [% IF (latestserial.status8 ) %]<span>Stopped</span>[% END %]
804
                                                </td>
839
                                                    </td>
805
                                                <td class="serial_notes">[% latestserial.notes | html %]</td>
840
                                                    <td class="serial_notes">[% latestserial.notes | html %]</td>
806
                                            </tr>
841
                                                </tr>
807
                                        [% END # / FOREACH latestserials %]
842
                                            [% END # / FOREACH latestserials %]
808
                                        </tbody>
843
                                        </tbody>
809
                                    </table>
844
                                    </table>
810
                                [% END # / IF subscription.latestserials %]
845
                                [% END # / IF subscription.latestserials %]
811
                            [% END # / FOREACH subscriptions %]
846
                            [% END # / FOREACH subscriptions %]
812
                            <p class="subscription_moredetails"><a href="opac-serial-issues.pl?biblionumber=[% biblio.biblionumber | uri %]">More details</a></p>
847
                            <p class="subscription_moredetails"><a href="opac-serial-issues.pl?biblionumber=[% biblio.biblionumber | uri %]">More details</a></p>
813
                        </div> <!-- / #subscriptions -->
848
                        </div><!-- / #subscriptions -->
814
                    [% END # IF subscriptionsnumber %]
849
                    [% END # IF subscriptionsnumber %]
815
850
816
                    [% IF ( LibraryThingForLibrariesID && LibraryThingForLibrariesTabbedView ) %]
851
                    [% IF ( LibraryThingForLibrariesID && LibraryThingForLibrariesTabbedView ) %]
Lines 819-976 Link Here
819
                            <div class="content_set">
854
                            <div class="content_set">
820
                                <!-- Uncommenting this span makes the font smaller in the tab for LTFL -->
855
                                <!-- Uncommenting this span makes the font smaller in the tab for LTFL -->
821
                                <!-- but breaks Xhtml validation -->
856
                                <!-- but breaks Xhtml validation -->
822
                                <!--    <span class="results_summary">-->
857
                                <!-- <span class="results_summary"> -->
823
                                <div id="ltfl_related"></div>
858
                                <div id="ltfl_related"></div>
824
                                <div id="ltfl_similars"></div>
859
                                <div id="ltfl_similars"></div>
825
                                <!--            </span>-->
860
                                <!-- </span>-->
826
                                </div>
861
                            </div>
827
                                </div>
862
                        </div>
828
                                <div id="LTFLTagBrowse">
863
                        <div id="LTFLTagBrowse">
829
                                    <div class="content_set">
864
                            <div class="content_set">
830
                                        <!-- <span class="results_summary"> -->
865
                                <!-- <span class="results_summary"> -->
831
                                        <div id="ltfl_tagbrowse" class="ltfl"></div>
866
                                <div id="ltfl_tagbrowse" class="ltfl"></div>
832
                                        <!-- </span> -->
867
                                <!-- </span> -->
833
                                    </div>
868
                            </div>
834
                                </div>
869
                        </div>
835
                    [% END # / IF LibraryThingForLibrariesID && LibraryThingForLibrariesTabbedView %]
870
                    [% END # / IF LibraryThingForLibrariesID && LibraryThingForLibrariesTabbedView %]
836
871
837
                    [% IF Koha.Preference( 'reviewson' ) == 1 %]
872
                    [% IF Koha.Preference( 'reviewson' ) == 1 %]
838
                        <div id="comments">
873
                        <div id="comments">
839
                            <div id="newcomment"></div>
874
                            <div id="newcomment"></div>
840
                                [% IF ( reviews ) %]
875
                            [% IF ( reviews ) %]
841
                                    [% FOREACH review IN reviews %]
876
                                [% FOREACH review IN reviews %]
842
                                        [% IF borrowernumber && review.borrowernumber == borrowernumber %]
877
                                    [% IF borrowernumber && review.borrowernumber == borrowernumber %]
843
                                            <div class="commentline yours" id="c[% review.reviewid | html %]">
878
                                        <div class="commentline yours" id="c[% review.reviewid | html %]">
879
                                            [% IF ( review.avatarurl ) %]
880
                                                <img class="avatar" src="[% review.avatarurl | html %]" height="80" width="80" alt="" />
881
                                            [% END %]
882
883
                                            [% IF review.approved %]
884
                                                <h5>Your comment</h5>
885
                                            [% ELSE %]
886
                                                <h5>Your comment (preview, pending approval)</h5>
887
                                            [% END %]
888
                                            <small>[% review.datereviewed | $KohaDates %]</small>
889
                                            <p>
890
                                                [% FILTER html_break %]
891
                                                    [% review.review | html %]
892
                                                [% END %]
893
                                                <a href="#" onclick="Dopop('/cgi-bin/koha/opac-review.pl?biblionumber=[% review.biblionumber | uri %]&amp;reviewid=[% review.reviewid | uri %]');">Edit</a>
894
                                            </p>
895
                                        </div>
896
                                    [% ELSE %]
897
                                        <div class="commentline">
898
                                            [% IF ( ShowReviewer != "none" && review.patron) %]
844
                                                [% IF ( review.avatarurl ) %]
899
                                                [% IF ( review.avatarurl ) %]
845
                                                    <img class="avatar" src="[% review.avatarurl | html %]" height="80" width="80" alt="" />
900
                                                    <img class="avatar" src="[% review.avatarurl | html %]" height="80" width="80" alt="" />
846
                                                [% END %]
901
                                                [% END %]
847
                                                [% IF review.approved %]
902
848
                                                    <h5>Your comment</h5>
903
                                                [% SWITCH ShowReviewer %]
849
                                                [% ELSE %]
904
                                                [% CASE 'full' %]
850
                                                    <h5>Your comment (preview, pending approval)</h5>
905
                                                    <h5>Comment by [% review.patron.title | html %][% review.patron.firstname | html %][% review.patron.surname | html %]</h5>
906
                                                [% CASE 'first' %]
907
                                                    <h5>Comment by [% review.patron.firstname | html %]</h5>
908
                                                [% CASE 'surname' %]
909
                                                    <h5>Comment by [% review.patron.surname | html %]</h5>
910
                                                [% CASE 'firstandinitial' %]
911
                                                    <h5>Comment by [% review.patron.firstname | html %][% review.patron.surname|truncate(2, '.') | html %]</h5>
912
                                                [% CASE 'username' %]
913
                                                    <h5>Comment by [% review.patron.userid | html %]</h5>
851
                                                [% END %]
914
                                                [% END %]
915
852
                                                <small>[% review.datereviewed | $KohaDates %]</small>
916
                                                <small>[% review.datereviewed | $KohaDates %]</small>
853
                                                <p>
917
                                            [% ELSE %]
854
                                                    [% FILTER html_break %]
918
                                                <h5>Patron comment on [% review.datereviewed | $KohaDates %]</h5>
855
                                                        [% review.review | html %]
919
                                            [% END # / IF ShowReviewer != "none" && review.patron %]
856
                                                    [% END %]
920
                                            <p>
857
                                                    <a href="#" onclick="Dopop('/cgi-bin/koha/opac-review.pl?biblionumber=[% review.biblionumber | uri %]&amp;reviewid=[% review.reviewid | uri %]');">Edit</a>
921
                                                [% FILTER html_break %]
858
                                                </p>
922
                                                    [% review.review | html %]
859
                                            </div>
923
                                                [% END %]
860
                                        [% ELSE %]
924
                                            </p>
861
                                            <div class="commentline">
925
                                        </div><!-- / .commentline -->
862
                                                [% IF ( ShowReviewer != "none" && review.patron) %]
926
                                    [% END %]
863
927
                                [% END # / FOREACH reviews %]
864
                                                    [% IF ( review.avatarurl ) %]
928
                            [% ELSE %]
865
                                                        <img class="avatar" src="[% review.avatarurl | html %]" height="80" width="80" alt="" />
929
                                <p>There are no comments for this item.</p>
866
                                                    [% END %]
930
                            [% END # / IF reviews %]
867
                                                    [% SWITCH ShowReviewer %]
931
868
                                                    [% CASE 'full' %]
932
                            [% IF ( loggedinusername ) %]
869
                                                        <h5>Comment by [% review.patron.title | html %] [% review.patron.firstname | html %] [% review.patron.surname | html %]</h5>
933
                                [% UNLESS ( loggedincommenter ) %]
870
                                                    [% CASE 'first' %]
934
                                   <div id="addcomment">
871
                                                        <h5>Comment by [% review.patron.firstname | html %]</h5>
935
                                        <a href="#" onclick="Dopop('/cgi-bin/koha/opac-review.pl?biblionumber=[% biblio.biblionumber | uri %]'); return false;">Post your comments on this item.</a>
872
                                                    [% CASE 'surname' %]
936
                                    </div>
873
                                                        <h5>Comment by [% review.patron.surname | html %]</h5>
937
                                [% END %]
874
                                                    [% CASE 'firstandinitial' %]
938
                            [% ELSE %]
875
                                                        <h5>Comment by [% review.patron.firstname | html %] [% review.patron.surname|truncate(2,'.') | html %]</h5>
939
                                <div id="addcomment">
876
                                                    [% CASE 'username' %]
940
                                    <a class="login-link loginModal-trigger" role="button" data-toggle="modal" href="/cgi-bin/koha/opac-user.pl">Log in to your account</a> to post a comment.
877
                                                        <h5>Comment by [% review.patron.userid | html %]</h5>
941
                                </div>
878
                                                    [% END %]
942
                            [% END # / IF loggedinusername %]
879
943
                        </div><!-- / #comments -->
880
                                                    <small>[% review.datereviewed | $KohaDates %]</small>
944
                    [% END # / IF reviewson %]
881
                                                [% ELSE %]
945
882
                                                    <h5>Patron comment on [% review.datereviewed | $KohaDates %]</h5>
946
                    [% IF ( OPACFRBRizeEditions && XISBNS ) %]
883
                                                [% END # / IF ShowReviewer != "none" && review.patron %]
947
                        <div id="editions">
884
                                                <p>
948
                            <h4>Other editions of this work</h4>
885
                                                  [% FILTER html_break %]
949
                            <table class="table table-bordered table-striped">
886
                                                  [% review.review | html %]
950
                                [% FOREACH XISBN IN XISBNS %]
887
                                                  [% END %]
951
                                    <tr>
888
                                                </p>
952
                                        <td>
889
                                            </div> <!-- / .commentline -->
953
                                        [% IF ( OPACAmazonCoverImages ) %]
954
                                            <img src="https://images-na.ssl-images-amazon.com/images/P/[% XISBN.normalized_isbn | html %].01._AA75_PU_PU-5_.jpg" alt="" />
890
                                        [% END %]
955
                                        [% END %]
891
                                    [% END # / FOREACH reviews %]
892
                                [% ELSE %]
893
                                    <p>There are no comments for this item.</p>
894
                                [% END # / IF reviews %]
895
956
896
                                [% IF ( loggedinusername ) %]
957
                                        [% IF ( SyndeticsEnabled && SyndeticsCoverImages ) %]
897
                                    [% UNLESS ( loggedincommenter ) %]
958
                                            [% IF ( XISBN.content_identifier_exists ) %]
898
                                       <div id="addcomment"> <a href="#" onclick="Dopop('/cgi-bin/koha/opac-review.pl?biblionumber=[% biblio.biblionumber | uri %]'); return false;">
959
                                                <img src="https://secure.syndetics.com/index.aspx?isbn=[% XISBN.browser_normalized_isbn | html %]/SC.GIF&amp;client=[% SyndeticsClientCode | html %][% IF ( XISBN.browser_normalized_upc ) %]&amp;upc=[% XISBN.browser_normalized_upc | html %][% END %][% IF ( XISBN.browser_normalized_oclc ) %]&amp;oclc=[% XISBN.browser_normalized_oclc | html %][% END %]&amp;type=xw10" alt="" />
899
                                            Post your comments on this item.
960
                                            [% ELSE %]
900
                                        </a></div>
961
                                                <span class="no-image">No cover image available</span>
901
                                    [% END %]
962
                                            [% END # / IF  XISBN.content_identifier_exists %]
902
                                [% ELSE %]
963
                                        [% END # / IF SyndeticsEnabled && SyndeticsCoverImages %]
903
                                    <div id="addcomment"><a class="login-link loginModal-trigger" role="button" data-toggle="modal" href="/cgi-bin/koha/opac-user.pl">Log in to your account</a> to post a comment.</div>
964
                                        </td>
904
                                [% END # / IF loggedinusername %]
905
                            </div> <!-- / #comments -->
906
                        [% END # / IF reviewson %]
907
965
908
                        [% IF ( OPACFRBRizeEditions && XISBNS ) %]
966
                                        [% UNLESS ( item_level_itypes ) %]
909
                            <div id="editions">
967
                                            <td>[% XISBN.description | html %]</td>
910
                                <h4>Other editions of this work</h4>
968
                                        [% END %]
911
                                <table class="table table-bordered table-striped">
969
                                        <td>
912
                                    [% FOREACH XISBN IN XISBNS %]
970
                                            <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% XISBN.biblionumber | uri %]">[% XISBN.title | html %]</a>
913
                                        <tr>
971
                                            [% IF ( XISBN.author ) %]<span> by </span>[% XISBN.author | html %][% END %]
914
                                            <td>
972
                                            [% IF ( XISBN.copyrightdate ) %]<span> &copy;</span>[% XISBN.copyrightdate | html %][% END %]
915
                                            [% IF ( OPACAmazonCoverImages ) %]
916
                                                <img src="https://images-na.ssl-images-amazon.com/images/P/[% XISBN.normalized_isbn | html %].01._AA75_PU_PU-5_.jpg" alt="" />
917
                                            [% END %]
918
973
919
                                            [% IF ( SyndeticsEnabled && SyndeticsCoverImages ) %]
974
                                            [% IF ( XISBN.publishercode ) %]
920
                                                [% IF ( XISBN.content_identifier_exists ) %]
975
                                                <p>[% XISBN.publishercode | html %]
921
                                                    <img src="https://secure.syndetics.com/index.aspx?isbn=[% XISBN.browser_normalized_isbn | html %]/SC.GIF&amp;client=[% SyndeticsClientCode | html %][% IF ( XISBN.browser_normalized_upc ) %]&amp;upc=[% XISBN.browser_normalized_upc | html %][% END %][% IF ( XISBN.browser_normalized_oclc ) %]&amp;oclc=[% XISBN.browser_normalized_oclc | html %][% END %]&amp;type=xw10" alt="" />
976
                                                    [% IF ( XISBN.place ) %]([% XISBN.place | html %])[% END %]
922
                                                [% ELSE %]
977
923
                                                    <span class="no-image">No cover image available</span>
978
                                                    [% IF ( XISBN.publicationyear ) %][% ', ' _ XISBN.publicationyear | html %][% END %]
924
                                                [% END # / IF  XISBN.content_identifier_exists %]
925
                                            [% END # / IF SyndeticsEnabled && SyndeticsCoverImages %]
926
                                            </td>
927
979
928
                                            [% UNLESS ( item_level_itypes ) %]
980
                                                    [% IF ( XISBN.pages ) %][% XISBN.pages | html %][% XISBN.illus | html %][% XISBN.size | html %][% END %]
929
                                                <td>[% XISBN.description | html %]</td>
981
                                                </p>
930
                                            [% END %]
982
                                            [% END %]
931
                                            <td><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% XISBN.biblionumber | uri %]">[% XISBN.title | html %]</a>
983
                                        </td>
932
                                                [% IF ( XISBN.author ) %]<span> by </span>[% XISBN.author | html %][% END %]
984
                                    </tr>
933
                                                [% IF ( XISBN.copyrightdate ) %]<span> &copy;</span>[% XISBN.copyrightdate | html %][% END %]
985
                                [% END # / FOREACH XISBNS %]
934
                                                [% IF ( XISBN.publishercode ) %]
986
                            </table>
935
                                                    <p>[% XISBN.publishercode | html %]
987
                        </div><!-- / #editions -->
936
                                                        [% IF ( XISBN.place ) %]([% XISBN.place | html %])[% END %]
988
                    [% END # / IF OPACFRBRizeEditions && XISBNS %]
937
                                                        [% IF ( XISBN.publicationyear ) %][% ', ' _ XISBN.publicationyear | html %][% END %]
989
938
                                                        [% IF ( XISBN.pages ) %][% XISBN.pages | html %] [% XISBN.illus | html %] [% XISBN.size | html %][% END %]
990
                    [% IF ( HTML5MediaEnabled ) %]
939
                                                    </p>
991
                        <div id="html5media">
940
                                                [% END %]
992
                            [% FOREACH HTML5MediaSet IN HTML5MediaSets %]
941
                                            </td>
942
                                        </tr>
943
                                    [% END # / FOREACH XISBNS %]
944
                                </table>
945
                            </div> <!-- / #editions -->
946
                        [% END # / IF OPACFRBRizeEditions && XISBNS %]
947
948
                        [% IF ( HTML5MediaEnabled ) %]
949
                            <div id="html5media">
950
                              [% FOREACH HTML5MediaSet IN HTML5MediaSets %]
951
                                <p>
993
                                <p>
952
                                  [% SET ctrl_preload = ' controls preload=none' #translatability %]
994
                                    [% SET ctrl_preload = ' controls preload=none' #translatability %]
953
                                  <[% HTML5MediaParent _ ctrl_preload | html %] >
995
                                        <[% HTML5MediaParent _ ctrl_preload | html %] >
954
                                    <[% HTML5MediaSet.child | html %] src="[% HTML5MediaSet.srcblock | html %]" [% HTML5MediaSet.typeblock | html %] />
996
                                            <[% HTML5MediaSet.child | html %] src="[% HTML5MediaSet.srcblock | html %]" [% HTML5MediaSet.typeblock | html %] />
955
                                    <span>[[% HTML5MediaParent | html %] tag not supported by your browser.]</span>
997
                                            <span>[[% HTML5MediaParent | html %] tag not supported by your browser.]</span>
956
                                  </[% HTML5MediaParent | html %]>
998
                                        </[% HTML5MediaParent | html %]>
957
                                </p>
999
                                </p>
958
                              [% END %]
1000
                            [% END %]
959
                            </div>
1001
                        </div>
960
                        [% END # / IF HTML5MediaEnabled %]
1002
                    [% END # / IF HTML5MediaEnabled %]
961
1003
962
                        [% IF ( OPACLocalCoverImages && localimages.size ) %]
1004
                    [% IF ( OPACLocalCoverImages && localimages.size ) %]
963
                            <div id="images">
1005
                        <div id="images">
964
                                <p>Click on an image to view it in the image viewer</p>
1006
                            <p>Click on an image to view it in the image viewer</p>
965
                                [% FOREACH image IN localimages %]
1007
                            [% FOREACH image IN localimages %]
966
                                    [% IF image %]
1008
                                [% IF image %]
967
                                        <a class="localimage" href="/cgi-bin/koha/opac-imageviewer.pl?biblionumber=[% biblio.biblionumber | html %]&amp;imagenumber=[% image | html %]"><img alt="" src="/cgi-bin/koha/opac-image.pl?thumbnail=1&amp;imagenumber=[% image | html %]" /></a>
1009
                                    <a class="localimage" href="/cgi-bin/koha/opac-imageviewer.pl?biblionumber=[% biblio.biblionumber | html %]&amp;imagenumber=[% image | html %]"><img alt="" src="/cgi-bin/koha/opac-image.pl?thumbnail=1&amp;imagenumber=[% image | html %]" /></a>
968
                                    [% END %]
969
                                [% END %]
1010
                                [% END %]
970
                            </div><!-- / #images -->
1011
                            [% END %]
971
                        [% END # / IF OPACLocalCoverImages && localimages.size %]
1012
                        </div><!-- / #images -->
972
1013
                    [% END # / IF OPACLocalCoverImages && localimages.size %]
973
                </div> <!-- / #bibliodescriptions -->
1014
                </div><!-- / #bibliodescriptions -->
974
1015
975
                [% IF ( NovelistSelectProfile && NovelistSelectView == 'below' && ( normalized_isbn || normalized_upc ) ) %]
1016
                [% IF ( NovelistSelectProfile && NovelistSelectView == 'below' && ( normalized_isbn || normalized_upc ) ) %]
976
                    <div id="NovelistSelect">
1017
                    <div id="NovelistSelect">
Lines 994-1006 Link Here
994
                    </div>
1035
                    </div>
995
                [% END # / IF Babeltheque %]
1036
                [% END # / IF Babeltheque %]
996
1037
997
            [%# Following on one line due to translation issues %]
1038
                [% # Following on one line due to translation issues %]
998
            [% INCLUDE "openlibrary-readapi.inc" bib = { normalized_isbn => normalized_isbn,lccn => lccn, normalized_oclc => normalized_oclc } %]
1039
                [% INCLUDE "openlibrary-readapi.inc" bib = { normalized_isbn => normalized_isbn, lccn => lccn, normalized_oclc => normalized_oclc } %]
999
1000
        </div> <!-- /.span9 -->
1001
1040
1002
        <div class="span3">
1041
            </div><!-- /.span9 -->
1003
            <div id="ulactioncontainer">
1004
1042
1005
                [% IF ( Koha.Preference('OpacBrowseResults') && busc ) %]
1043
                [% IF ( Koha.Preference('OpacBrowseResults') && busc ) %]
1006
                    <div class="nav_results">
1044
                    <div class="nav_results">
Lines 1017-1023 Link Here
1017
                                [% IF ( previousBiblionumber ) %]
1055
                                [% IF ( previousBiblionumber ) %]
1018
                                    <a href="opac-detail.pl?biblionumber=[% previousBiblionumber | uri %][% IF ( query_desc && OpacHighlightedWords ) %]&query_desc=[% query_desc |uri %][% END %]" title="See: [% IF ( previousTitle ) %][% previousTitle | html %][% ELSE %]previous biblio[% END %]"><i class="fa fa-angle-double-left" aria-hidden="true"></i> Previous</a>
1056
                                    <a href="opac-detail.pl?biblionumber=[% previousBiblionumber | uri %][% IF ( query_desc && OpacHighlightedWords ) %]&query_desc=[% query_desc |uri %][% END %]" title="See: [% IF ( previousTitle ) %][% previousTitle | html %][% ELSE %]previous biblio[% END %]"><i class="fa fa-angle-double-left" aria-hidden="true"></i> Previous</a>
1019
                                [% ELSE %]
1057
                                [% ELSE %]
1020
                                    <span>Previous</span>
1058
                                    <span><i class="fa fa-bars"></i> Browse results</span>
1021
                                [% END %]
1059
                                [% END %]
1022
                            </li>
1060
                            </li>
1023
                            [%# busc is already URI encoded %]
1061
                            [%# busc is already URI encoded %]
Lines 1053-1059 Link Here
1053
                                            <li id="li_pag_[% loop.count | html %]" title="Go to detail"><span class="li_pag_index">[% loop.count + offset | html %]</span><a href="opac-detail.pl?biblionumber=[% listitem.biblionumber | uri %]&amp;query_desc=[% query_desc |uri %]">[% listitem.title | html %]</a><br> [% IF ( listitem.author ) %]by [% listitem.author | html %][% END %]</li>
1091
                                            <li id="li_pag_[% loop.count | html %]" title="Go to detail"><span class="li_pag_index">[% loop.count + offset | html %]</span><a href="opac-detail.pl?biblionumber=[% listitem.biblionumber | uri %]&amp;query_desc=[% query_desc |uri %]">[% listitem.title | html %]</a><br> [% IF ( listitem.author ) %]by [% listitem.author | html %][% END %]</li>
1054
                                        [% END %]
1092
                                        [% END %]
1055
                                    [% END %]
1093
                                    [% END %]
1056
                                </ul>
1094
                                </li>
1095
                                [%# busc is already URI encoded %]
1096
                                <li class="back_results"><a href="opac-search.pl?[% busc | $raw %]" title="Back to the results search list">Back to results</a></li>
1097
                                <li class="right_results">
1098
                                    [% IF ( nextBiblionumber ) %]
1099
                                        <a href="opac-detail.pl?biblionumber=[% nextBiblionumber | uri %][% IF ( query_desc && OpacHighlightedWords ) %]&query_desc=[% query_desc |uri %][% END %]" title="See: [% IF ( nextTitle ) %][% nextTitle | html %][% ELSE %]next biblio[% END %]">Next <i class="fa fa-angle-double-right"></i></a>
1100
                                    [% ELSE %]
1101
                                        <span>Next</span>
1102
                                    [% END %]
1103
                                </li>
1104
                            </ul>
1105
                            [% IF ( listResults ) %]
1106
                            <div class="results-pagination">
1107
                                <div class="nav_pages">
1108
                                    <ul id="listResults">
1109
                                        [% FOREACH listitem IN listResults %]
1110
                                            [% IF ( listitem.biblionumber == biblionumber ) %]
1111
                                                <li class="li_pag_[% loop.count | html %] highlight">
1112
                                            [% ELSE %]
1113
                                                <li class="li_pag_[% loop.count | html %]">
1114
                                            [% END %]
1115
                                            <a href="opac-detail.pl?biblionumber=[% listitem.biblionumber | uri %]&amp;query_desc=[% query_desc |uri %]" title="View record &quot;[% listitem.title | html %]&quot;" class="a_pag" id="a_pag_[% loop.count | html %]">[% loop.count + offset | html %]</a></li>
1116
                                        [% END %]
1117
                                    </ul>
1118
                                </div>
1119
                                <div class="pagination_list">
1120
                                    <ul id="ul_pagination_lists">
1121
                                        [% FOREACH listitem IN listResults %]
1122
                                            [% IF ( listitem.biblionumber == biblionumber ) %]
1123
                                                <li id="li_pag_[% loop.count | html %]" class="highlight" title="Go to detail"><span class="li_pag_index"><i class="fa fa-arrow-left"></i>[% loop.count  + offset | html %]</span><a href="opac-detail.pl?biblionumber=[% biblionumber | uri %]&amp;query_desc=[% query_desc |uri %]">[% title | html %]</a><br>[% IF ( author ) %]by [% author | html %][% END %]</li>
1124
                                            [% ELSE %]
1125
                                                <li id="li_pag_[% loop.count | html %]" title="Go to detail"><span class="li_pag_index">[% loop.count + offset | html %]</span><a href="opac-detail.pl?biblionumber=[% listitem.biblionumber | uri %]&amp;query_desc=[% query_desc |uri %]">[% listitem.title | html %]</a><br>[% IF ( listitem.author ) %]by [% listitem.author | html %][% END %]</li>
1126
                                            [% END %]
1127
                                        [% END %]
1128
                                    </ul>
1129
                                </div>
1130
                            </div>
1131
                            [% END %]
1132
                            <div class="pagination_footer">
1133
                                <a href="#" class="close_pagination"><i class="fa fa-remove"></i> Close</a>
1057
                            </div>
1134
                            </div>
1058
                        </div>
1135
                        </div>
1059
                        [% END %]
1136
                        [% END %]
Lines 1063-1083 Link Here
1063
                    </div>
1140
                    </div>
1064
                [% END # / IF OpacBrowseResults && busc %]
1141
                [% END # / IF OpacBrowseResults && busc %]
1065
1142
1066
                [% INCLUDE 'opac-detail-sidebar.inc' %]
1143
                    [% INCLUDE 'opac-detail-sidebar.inc' %]
1067
1144
1068
                [% IF ( NovelistSelectProfile && NovelistSelectView == 'right' && ( normalized_isbn || normalized_upc ) ) %]
1145
                    [% IF ( NovelistSelectProfile && NovelistSelectView == 'right' && ( normalized_isbn || normalized_upc ) ) %]
1069
                    <div id="NovelistSelect">
1146
                        <div id="NovelistSelect">
1070
                        <h4>Novelist Select</h4>
1147
                            <h4>Novelist Select</h4>
1071
                        <div data-novelist-novelistselect=[% IF normalized_isbn %][% normalized_isbn | html %][% ELSE %][% normalized_upc | html %][% END %]></div>
1148
                            <div data-novelist-novelistselect=[% IF normalized_isbn %][% normalized_isbn | html %][% ELSE %][% normalized_upc | html %][% END %]></div>
1072
                    </div>
1149
                        </div>
1073
                [% END %]
1150
                    [% END %]
1074
1151
1075
                [% IF ( Babeltheque ) %]
1152
                    [% IF ( Babeltheque ) %]
1076
                    <div class="babeltheque_adds">
1153
                        <div class="babeltheque_adds">
1077
                        <div id="BW_critiques_aj"></div>
1154
                            <div id="BW_critiques_aj"></div>
1078
                        <div id="BW_citations_aj"></div>
1155
                            <div id="BW_citations_aj"></div>
1079
                    </div>
1156
                        </div>
1080
                [% END %]
1157
                    [% END %]
1081
1158
1082
                [% IF ( Koha.Preference('SocialNetworks') ) %]
1159
                [% IF ( Koha.Preference('SocialNetworks') ) %]
1083
                    <div id="social_networks" class="clearfix">
1160
                    <div id="social_networks" class="clearfix">
Lines 1107-1122 Link Here
1107
            <a href="https://www.librarything.com/forlibraries/noscript.php?id=[% LibraryThingForLibrariesID | uri %]&amp;accessibility=1">here</a>.</noscript>
1184
            <a href="https://www.librarything.com/forlibraries/noscript.php?id=[% LibraryThingForLibrariesID | uri %]&amp;accessibility=1">here</a>.</noscript>
1108
        [% END %]
1185
        [% END %]
1109
1186
1110
        [% IF ( NovelistSelectProfile && ( normalized_isbn || normalized_upc ) ) %]
1187
            [% IF ( NovelistSelectProfile && ( normalized_isbn || normalized_upc ) ) %]
1111
            <script src="https://imageserver.ebscohost.com/novelistselect/ns2init.js"></script>
1188
                <script src="https://imageserver.ebscohost.com/novelistselect/ns2init.js"></script>
1112
        [% END %]
1189
            [% END %]
1113
1190
1114
        [% IF ( Babeltheque ) %]
1191
            [% IF ( Babeltheque ) %]
1115
            <script src="[% Babeltheque_url_js | html %]"></script>
1192
                <script src="[% Babeltheque_url_js | html %]"></script>
1116
        [% END %]
1193
            [% END %]
1117
    </div> <!-- / .row-fluid -->
1194
        </div><!-- / .row-fluid -->
1118
</div> <!-- / .container-fluid -->
1195
    </div><!-- / .container-fluid -->
1119
</div> <!-- / .main -->
1196
</div><!-- / .main -->
1120
1197
1121
[% INCLUDE 'opac-bottom.inc' %]
1198
[% INCLUDE 'opac-bottom.inc' %]
1122
1199
Lines 1126-1160 Link Here
1126
    <table class="table table-bordered table-striped" id="[% table_id | html %]">
1203
    <table class="table table-bordered table-striped" id="[% table_id | html %]">
1127
        <thead>
1204
        <thead>
1128
            <tr>
1205
            <tr>
1129
        [% IF ( item_level_itypes ) %]
1206
                [% IF ( item_level_itypes ) %]
1130
                <th id="item_itemtype" data-colname="item_itemtype" class="itype">Item type</th>[% END %]
1207
                    <th id="item_itemtype" data-colname="item_itemtype" class="itype">Item type</th>
1131
        [% IF ( OpacLocationBranchToDisplay == 'holding' || OpacLocationBranchToDisplay == 'both' ) %]
1208
                [% END %]
1132
                <th id="item_current_location" data-colname="item_current_location" class="item_location">Current location</th>[% END %]
1209
1133
        [% IF ( OpacLocationBranchToDisplay == 'home' || OpacLocationBranchToDisplay == 'both' ) %]
1210
                [% IF ( OpacLocationBranchToDisplay == 'holding' || OpacLocationBranchToDisplay == 'both' ) %]
1134
                <th id="item_home_location" data-colname="item_home_location" class="item_location">Home library</th>[% END %]
1211
                    <th id="item_current_location" data-colname="item_current_location" class="item_location">Current location</th>
1135
        [% IF ( itemdata_ccode ) %]
1212
                [% END %]
1136
                <th id="item_ccode" data-colname="item_ccode" class="collection">Collection</th>[% END %]
1213
1137
        [% IF ( Koha.Preference('OpacLocationOnDetail') == 'column' && itemdata_location ) %]
1214
                [% IF ( OpacLocationBranchToDisplay == 'home' || OpacLocationBranchToDisplay == 'both' ) %]
1138
                <th id="item_shelving_location" data-colname="item_shelving_location" class="shelving_location">Shelving location</th>[% END %]
1215
                    <th id="item_home_location" data-colname="item_home_location" class="item_location">Home library</th>
1139
                <th id="item_callnumber" data-colname="item_callnumber" class="call_no">Call number</th>
1216
                [% END %]
1140
        [% IF ( itemdata_enumchron ) %]
1217
1141
                <th id="item_enumchron" data-colname="item_enumchron" class="vol_info">Vol info</th>[% END %]
1218
                [% IF ( itemdata_ccode ) %]
1142
        [% IF ( itemdata_uri ) %]
1219
                    <th id="item_ccode" data-colname="item_ccode" class="collection">Collection</th>
1143
                <th id="item_url" data-colname="item_url" class="url">URL</th>[% END %]
1220
                [% END %]
1144
        [% IF ( itemdata_copynumber ) %]
1221
1145
                <th id="item_copy" data-colname="item_copy" class="copynumber">Copy number</th>[% END %]
1222
                [% IF ( Koha.Preference('OpacLocationOnDetail') == 'column' && itemdata_location ) %]
1146
                <th id="item_status" data-colname="item_status" class="status">Status</th>
1223
                    <th id="item_shelving_location" data-colname="item_shelving_location" class="shelving_location">Shelving location</th>
1147
        [% IF ( itemdata_itemnotes ) %]
1224
                [% END %]
1148
                <th id="item_notes" data-colname="item_notes" class="notes">Notes</th>[% END %]
1225
                    <th id="item_callnumber" data-colname="item_callnumber" class="call_no">Call number</th>
1149
                <th id="item_datedue" data-colname="item_datedue" class="date_due">Date due</th>
1226
                [% IF ( itemdata_enumchron ) %]
1150
                <th id="item_barcode" data-colname="item_barcode" class="barcode">Barcode</th>
1227
                    <th id="item_enumchron" data-colname="item_enumchron" class="vol_info">Vol info</th>
1151
        [% IF holds_count.defined %]
1228
                [% END %]
1152
                <th id="item_holds" data-colname="item_holds">Item holds</th>
1229
1153
        [% ELSIF show_priority %]
1230
                [% IF ( itemdata_uri ) %]
1154
                <th id="item_priority" data-colname="item_priority">Item hold queue priority</th>
1231
                    <th id="item_url" data-colname="item_url" class="url">URL</th>
1155
        [% END %]
1232
                [% END %]
1156
        [% IF ( ShowCourseReservesHeader ) %]
1233
1157
                <th id="item_coursereserves" data-colname="item_coursereserves">Course reserves</th>[% END %]
1234
                [% IF ( itemdata_copynumber ) %]
1235
                    <th id="item_copy" data-colname="item_copy" class="copynumber">Copy number</th>
1236
                [% END %]
1237
                    <th id="item_status" data-colname="item_status" class="status">Status</th>
1238
                [% IF ( itemdata_itemnotes ) %]
1239
                    <th id="item_notes" data-colname="item_notes" class="notes">Notes</th>
1240
                [% END %]
1241
                    <th id="item_datedue" data-colname="item_datedue" class="date_due">Date due</th>
1242
                    <th id="item_barcode" data-colname="item_barcode" class="barcode">Barcode</th>
1243
                [% IF holds_count.defined %]
1244
                    <th id="item_holds" data-colname="item_holds">Item holds</th>
1245
                [% ELSIF show_priority %]
1246
                    <th id="item_priority" data-colname="item_priority">Item hold queue priority</th>
1247
                [% END %]
1248
1249
                [% IF ( ShowCourseReservesHeader ) %]
1250
                    <th id="item_coursereserves" data-colname="item_coursereserves">Course reserves</th>
1251
                [% END %]
1158
            </tr>
1252
            </tr>
1159
        </thead>
1253
        </thead>
1160
        <tbody>
1254
        <tbody>
Lines 1164-1169 Link Here
1164
                [% ELSE %]
1258
                [% ELSE %]
1165
                  <tr vocab="http://schema.org/" typeof="Offer">
1259
                  <tr vocab="http://schema.org/" typeof="Offer">
1166
                [% END %]
1260
                [% END %]
1261
1167
                    [% IF ( item_level_itypes ) %]
1262
                    [% IF ( item_level_itypes ) %]
1168
                        <td class="itype">
1263
                        <td class="itype">
1169
                            [% UNLESS ( Koha.Preference('OpacNoItemTypeImages') ) %]
1264
                            [% UNLESS ( Koha.Preference('OpacNoItemTypeImages') ) %]
Lines 1174-1179 Link Here
1174
                            [% ITEM_RESULT.description | html %]
1269
                            [% ITEM_RESULT.description | html %]
1175
                        </td>
1270
                        </td>
1176
                    [% END %]
1271
                    [% END %]
1272
1177
                    [% IF ( OpacLocationBranchToDisplay == 'holding' || OpacLocationBranchToDisplay == 'both' ) %]
1273
                    [% IF ( OpacLocationBranchToDisplay == 'holding' || OpacLocationBranchToDisplay == 'both' ) %]
1178
                        <td class="location" property="seller">
1274
                        <td class="location" property="seller">
1179
                            <link property="itemOffered" href="#record" />
1275
                            <link property="itemOffered" href="#record" />
Lines 1186-1196 Link Here
1186
                                [% END %]
1282
                                [% END %]
1187
                            </span>
1283
                            </span>
1188
                            <div class="branch-info-tooltip">[% ITEM_RESULT.holding_branch_opac_info | $raw %]</div>
1284
                            <div class="branch-info-tooltip">[% ITEM_RESULT.holding_branch_opac_info | $raw %]</div>
1189
1190
                            [% IF ( Koha.Preference('OpacLocationOnDetail') == 'holding' || Koha.Preference('OpacLocationOnDetail') == 'both' ) %]
1285
                            [% IF ( Koha.Preference('OpacLocationOnDetail') == 'holding' || Koha.Preference('OpacLocationOnDetail') == 'both' ) %]
1191
                                <span class="shelvingloc">[% ITEM_RESULT.location_description | html %]</span>
1286
                                <span class="shelvingloc">[% ITEM_RESULT.location_description | html %]</span>
1192
                            [% END %]
1287
                            [% END %]
1193
1194
                        </td>
1288
                        </td>
1195
                    [% END %]
1289
                    [% END %]
1196
1290
Lines 1211-1221 Link Here
1211
                                [% END %]
1305
                                [% END %]
1212
                            </span>
1306
                            </span>
1213
                            <div class="branch-info-tooltip">[% ITEM_RESULT.home_branch_opac_info | $raw %]</div>
1307
                            <div class="branch-info-tooltip">[% ITEM_RESULT.home_branch_opac_info | $raw %]</div>
1214
1215
                            [% IF ( Koha.Preference('OpacLocationOnDetail') == 'home' || Koha.Preference('OpacLocationOnDetail') == 'both' ) %]
1308
                            [% IF ( Koha.Preference('OpacLocationOnDetail') == 'home' || Koha.Preference('OpacLocationOnDetail') == 'both' ) %]
1216
                                <span class="shelvingloc">[% ITEM_RESULT.location_description | html %]</span>
1309
                                <span class="shelvingloc">[% ITEM_RESULT.location_description | html %]</span>
1217
                            [% END %]
1310
                            [% END %]
1218
1219
                        </td>
1311
                        </td>
1220
                    [% END %]
1312
                    [% END %]
1221
1313
Lines 1250-1282 Link Here
1250
                            [% ELSIF ITEM_RESULT.enumchron %]
1342
                            [% ELSIF ITEM_RESULT.enumchron %]
1251
                                <span class="enum">[% ITEM_RESULT.enumchron | html %]</span>
1343
                                <span class="enum">[% ITEM_RESULT.enumchron | html %]</span>
1252
                            [% ELSIF ITEM_RESULT.serialseq %]
1344
                            [% ELSIF ITEM_RESULT.serialseq %]
1253
                                    <span class="serialseq">[% ITEM_RESULT.serialseq | html %]</span>
1345
                                <span class="serialseq">[% ITEM_RESULT.serialseq | html %]</span>
1254
                            [% END %]
1346
                            [% END %]
1347
1255
                            [% IF ( ITEM_RESULT.publisheddate ) %]
1348
                            [% IF ( ITEM_RESULT.publisheddate ) %]
1256
                                <span class="pubdate">([% ITEM_RESULT.publisheddate | $KohaDates %])</span>
1349
                                <span class="pubdate">([% ITEM_RESULT.publisheddate | $KohaDates %])</span>
1257
                            [% END %]
1350
                            [% END %]
1258
                        </td>
1351
                        </td>
1259
                    [% END %]
1352
                    [% END %]
1353
1260
                    [% IF ( itemdata_uri ) %]
1354
                    [% IF ( itemdata_uri ) %]
1261
                        <td class="url">
1355
                        <td class="url">
1262
                        [% IF ITEM_RESULT.uri %]
1356
                            [% IF ITEM_RESULT.uri %]
1263
                            [%# Initialize three helper vars %]
1357
                                [%# Initialize three helper vars %]
1264
                            [% SET target_attr = ''; SET rel_attr = ''; SET href_attr = '' %]
1358
                                [% SET target_attr = ''; SET rel_attr = ''; SET href_attr = '' %]
1265
                            [% IF Koha.Preference('OPACURLOpenInNewWindow') %][% SET target_attr = '_blank'; SET rel_attr = 'noreferrer' %][% END %]
1359
                                [% IF Koha.Preference('OPACURLOpenInNewWindow') %][% SET target_attr = '_blank'; SET rel_attr = 'noreferrer' %][% END %]
1266
1360
1267
                            [%# Check if there are multiple URIs; in the single case we only use pref URLLinkText or Link to resource %]
1361
                                [%# Check if there are multiple URIs; in the single case we only use pref URLLinkText or Link to resource %]
1268
                            [% IF ITEM_RESULT.uri.split(' \| ').size > 1 %]
1362
                                [% IF ITEM_RESULT.uri.split(' \| ').size > 1 %]
1269
                                [% FOREACH uri IN ITEM_RESULT.uri.split(' \| ') %]
1363
                                    [% FOREACH uri IN ITEM_RESULT.uri.split(' \| ') %]
1270
                                    [% IF trackclicks == 'track' || trackclicks == 'anonymous' %][% SET href_attr = "/cgi-bin/koha/tracklinks.pl?uri=" _ uri _ "&amp;biblionumber=" _ biblio.biblionumber _ "&amp;itemnumber=" _ ITEM_RESULT.itemnumber %] [% ELSE %][% SET href_attr = uri %][% END %]
1364
                                        [% IF trackclicks == 'track' || trackclicks == 'anonymous' %][% SET href_attr = "/cgi-bin/koha/tracklinks.pl?uri=" _ uri _ "&amp;biblionumber=" _ biblio.biblionumber _ "&amp;itemnumber=" _ ITEM_RESULT.itemnumber %][% ELSE %][% SET href_attr = uri %][% END %]
1271
                                    <a target="[% target_attr | html %]" rel="[% rel_attr | html %]" href="[% href_attr | url %]" property="url">[% uri | html %]</a><br>
1365
                                        <a target="[% target_attr | html %]" rel="[% rel_attr | html %]" href="[% href_attr | url %]" property="url">[% uri | html %]</a><br>
1366
                                    [% END %]
1367
                                [% ELSE %]
1368
                                    [% IF trackclicks == 'track' || trackclicks == 'anonymous' %][% SET href_attr = "/cgi-bin/koha/tracklinks.pl?uri=" _ ITEM_RESULT.uri _ "&amp;biblionumber=" _ biblio.biblionumber _ "&amp;itemnumber=" _ ITEM_RESULT.itemnumber %][% ELSE %][% SET href_attr = ITEM_RESULT.uri %][% END %]
1369
                                    <a target="[% target_attr | html %]" rel="[% rel_attr | html %]" href="[% href_attr | url %]" property="url">[% IF Koha.Preference('URLLinkText') %][% Koha.Preference('URLLinkText') | html %][% ELSE %]Link to resource[% END %]</a>
1272
                                [% END %]
1370
                                [% END %]
1273
                            [% ELSE %]
1274
                                [% IF trackclicks == 'track' || trackclicks == 'anonymous' %][% SET href_attr = "/cgi-bin/koha/tracklinks.pl?uri=" _ ITEM_RESULT.uri _ "&amp;biblionumber=" _ biblio.biblionumber _ "&amp;itemnumber=" _ ITEM_RESULT.itemnumber %] [% ELSE %][% SET href_attr = ITEM_RESULT.uri %][% END %]
1275
                                <a target="[% target_attr | html %]" rel="[% rel_attr | html %]" href="[% href_attr | url %]" property="url">[% IF Koha.Preference('URLLinkText') %][% Koha.Preference('URLLinkText') | html %][% ELSE %]Link to resource[% END %]</a>
1276
                            [% END %]
1371
                            [% END %]
1277
                        [% END %]
1278
                        </td>
1372
                        </td>
1279
                    [% END %]
1373
                    [% END %]
1374
1280
                    [% IF ( itemdata_copynumber ) %]<td class="copynumber">[% ITEM_RESULT.copynumber | html %]</td>[% END %]
1375
                    [% IF ( itemdata_copynumber ) %]<td class="copynumber">[% ITEM_RESULT.copynumber | html %]</td>[% END %]
1281
                    <td class="status">[% INCLUDE 'item-status-schema-org.inc' item = ITEM_RESULT %][% INCLUDE 'item-status.inc' item = ITEM_RESULT %]</td>
1376
                    <td class="status">[% INCLUDE 'item-status-schema-org.inc' item = ITEM_RESULT %][% INCLUDE 'item-status.inc' item = ITEM_RESULT %]</td>
1282
                    [% IF ( itemdata_itemnotes ) %]<td class="notes" property="description">[% ITEM_RESULT.itemnotes | $raw %]</td>[% END %]
1377
                    [% IF ( itemdata_itemnotes ) %]<td class="notes" property="description">[% ITEM_RESULT.itemnotes | $raw %]</td>[% END %]
Lines 1284-1290 Link Here
1284
                        <td class="barcode" property="serialNumber">[% ITEM_RESULT.barcode | html %]</td>
1379
                        <td class="barcode" property="serialNumber">[% ITEM_RESULT.barcode | html %]</td>
1285
                    [% IF holds_count.defined || show_priority %]
1380
                    [% IF holds_count.defined || show_priority %]
1286
                        <td class="holds_count">
1381
                        <td class="holds_count">
1287
                            [% IF holds_count.defined %] [% ITEM_RESULT.holds_count | html %] [% END %]
1382
                            [% IF holds_count.defined %][% ITEM_RESULT.holds_count | html %][% END %]
1383
1288
                            [% IF ITEM_RESULT.priority %]
1384
                            [% IF ITEM_RESULT.priority %]
1289
                                [% IF holds_count.defined %]
1385
                                [% IF holds_count.defined %]
1290
                                    <span>(priority [% ITEM_RESULT.priority | html %])</span>
1386
                                    <span>(priority [% ITEM_RESULT.priority | html %])</span>
Lines 1294-1299 Link Here
1294
                            [% END %]
1390
                            [% END %]
1295
                        </td>
1391
                        </td>
1296
                    [% END %]
1392
                    [% END %]
1393
1297
                    [% IF ShowCourseReservesHeader %]
1394
                    [% IF ShowCourseReservesHeader %]
1298
                        <td>
1395
                        <td>
1299
                            [% IF ITEM_RESULT.course_reserves %]
1396
                            [% IF ITEM_RESULT.course_reserves %]
Lines 1302-1317 Link Here
1302
                                        <p>
1399
                                        <p>
1303
                                            <a href="opac-course-details.pl?course_id=[% r.course.course_id | uri %]">
1400
                                            <a href="opac-course-details.pl?course_id=[% r.course.course_id | uri %]">
1304
                                            [% r.course.course_name | html %]
1401
                                            [% r.course.course_name | html %]
1305
                                            <!--[% IF r.course.course_number %] [% r.course.course_number | html %] [% END %]-->
1402
                                            <!--[% IF r.course.course_number %][% r.course.course_number | html %][% END %]-->
1306
                                            [% IF r.course.section %] [% r.course.section | html %] [% END %]
1403
                                            [% IF r.course.section %][% r.course.section | html %][% END %]
1307
                                            [% IF r.course.term %] [% AuthorisedValues.GetByCode( 'TERM', r.course.term, 1 ) | html %] [% END %]
1404
1405
                                            [% IF r.course.term %][% AuthorisedValues.GetByCode( 'TERM', r.course.term, 1 ) | html %][% END %]
1308
                                            </a>
1406
                                            </a>
1309
                                        </p>
1407
                                        </p>
1310
                                    [% END %]
1408
                                    [% END %]
1311
                                [% END %]
1409
                                [% END %]
1312
                            [% END %]
1410
                            [% END %]
1313
                        </td>
1411
                        </td>
1314
                    [% END  # /IF ShowCourseReservesHeader %]
1412
                    [% END  # / IF ShowCourseReservesHeader %]
1315
                </tr>
1413
                </tr>
1316
            [% END %]
1414
            [% END %]
1317
        </tbody>
1415
        </tbody>
Lines 1337-1515 Link Here
1337
                    <a id="validMultiSearch" href="#" class="btn btn-primary">Search</a>
1435
                    <a id="validMultiSearch" href="#" class="btn btn-primary">Search</a>
1338
                    <a href="#" class="cancel" data-dismiss="modal" aria-hidden="true">Cancel</a>
1436
                    <a href="#" class="cancel" data-dismiss="modal" aria-hidden="true">Cancel</a>
1339
                </div>
1437
                </div>
1340
            </div> <!-- /.modal-content -->
1438
            </div><!-- /.modal-content -->
1341
        </div> <!-- /.modal-dialog -->
1439
        </div><!-- /.modal-dialog -->
1342
    </div> <!-- /#myModal -->
1440
    </div><!-- /#myModal -->
1343
[% END %]
1441
[% END %]
1344
1442
1345
[% BLOCK jsinclude %]
1443
[% BLOCK jsinclude %]
1346
[% INCLUDE 'datatables.inc' %]
1444
    [% INCLUDE 'datatables.inc' %]
1347
[% INCLUDE 'columns_settings.inc' %]
1445
    [% INCLUDE 'columns_settings.inc' %]
1348
[% INCLUDE greybox.inc %]
1446
    [% INCLUDE greybox.inc %]
1349
[% IF ( SocialNetworks ) %]
1447
    [% IF ( SocialNetworks ) %]<script>!function(d, s, id){var js, fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js, fjs);}}(document, "script", "twitter-wjs");</script>[% END %]
1350
    <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
1448
    [% IF ( OpacStarRatings != 'disable' ) %][% Asset.js("lib/jquery/plugins/jquery.barrating.min.js") | $raw %][% END %]
1351
[% END %]
1449
    [% IF ( OpacHighlightedWords ) %][% Asset.js("lib/jquery/plugins/jquery.highlight-3.js") | $raw %][% END %]
1352
[% IF ( OpacStarRatings != 'disable' ) %][% Asset.js("lib/jquery/plugins/jquery.barrating.min.js") | $raw %][% END %]
1450
    [% IF ( Koha.Preference('OPACDetailQRCode') ) %][% Asset.js("lib/kjua/kjua.min.js") | $raw %][% END %]
1353
1451
1354
[% IF ( OpacHighlightedWords ) %][% Asset.js("lib/jquery/plugins/jquery.highlight-3.js") | $raw %][% END %]
1452
    [% IF ( Koha.Preference('OPACShowMusicalInscripts') ) %]
1355
[% IF ( Koha.Preference('OPACDetailQRCode') ) %]
1453
        <script>
1356
    [% Asset.js("lib/kjua/kjua.min.js") | $raw %]
1454
            var interface = "[% interface | html %]";
1357
[% END %]
1455
            var PREF_OPACPlayMusicalInscripts = "[% Koha.Preference('OPACPlayMusicalInscripts') | html %]";
1456
        </script>
1457
        [% Asset.js("js/verovio.js") | $raw %]
1458
    [% END %]
1358
1459
1359
[% IF ( Koha.Preference('OPACShowMusicalInscripts') ) %]
1360
    <script>
1460
    <script>
1361
        var interface = "[% interface | html %]";
1461
        var OPACPopupAuthorsSearch = "[% Koha.Preference('OPACPopupAuthorsSearch') | html %]";
1362
        var PREF_OPACPlayMusicalInscripts = "[% Koha.Preference('OPACPlayMusicalInscripts') | html %]";
1462
        [% IF ( OpacHighlightedWords ) %]
1363
    </script>
1463
            var q_array = new Array();  // holds search terms if available
1364
    [% Asset.js("js/verovio.js") | $raw %]
1365
[% END %]
1366
1464
1367
<script>
1465
            function highlightOff() {
1368
    var OPACPopupAuthorsSearch = "[% Koha.Preference('OPACPopupAuthorsSearch') | html %]";
1466
                $("#catalogue_detail_biblio").removeHighlight();
1369
    [% IF ( OpacHighlightedWords ) %]
1467
                $(".highlight_toggle").toggle();
1370
        var q_array = new Array();  // holds search terms if available
1468
            }
1371
1469
1372
        function highlightOff() {
1470
            function highlightOn() {
1373
            $("#catalogue_detail_biblio").removeHighlight();
1471
                var x;
1374
            $(".highlight_toggle").toggle();
1472
                for (x in q_array) {
1375
        }
1473
                    if ( q_array[x].length > 0 ) {
1376
        function highlightOn() {
1474
                        q_array[x] = q_array[x].replace(/\w*:([\w])/, "$1");
1377
            var x;
1475
                        q_array[x] = q_array[x].toLowerCase();
1378
            for (x in q_array) {
1476
                        var myStopwords = "[% Koha.Preference('NotHighlightedWords') | html %]".toLowerCase().split('|');
1379
                if ( q_array[x].length > 0 ) {
1477
                        if( $.inArray(q_array[x], myStopwords) == -1 ) {
1380
                    q_array[x] = q_array[x].replace(/\w*:([\w])/, "$1");
1478
                            $(".title").highlight(q_array[x]);
1381
                    q_array[x] = q_array[x].toLowerCase();
1479
                            $(".author").highlight(q_array[x]);
1382
                    var myStopwords = "[% Koha.Preference('NotHighlightedWords') | html %]".toLowerCase().split('|');
1480
                            $(".results_summary").highlight(q_array[x]);
1383
                    if( $.inArray(q_array[x], myStopwords) == -1 ) {
1481
                        }
1384
                        $(".title").highlight(q_array[x]);
1385
                        $(".author").highlight(q_array[x]);
1386
                        $(".results_summary").highlight(q_array[x]);
1387
                    }
1482
                    }
1388
                }
1483
                }
1484
                $(".highlight_toggle").toggle();
1389
            }
1485
            }
1390
            $(".highlight_toggle").toggle();
1486
        [% END %]
1391
        }
1392
    [% END %]
1393
1487
1394
     $(document).ready(function() {
1488
        $(document).ready(function() {
1489
            [% IF ( Koha.Preference('OPACDetailQRCode') ) %]
1490
                var qrcode = kjua({
1491
                    ecLevel: "H",
1492
                    render: "canvas",
1493
                    rounded: 100,
1494
                    size: 150,
1495
                    text: location.href,
1496
                });
1395
1497
1396
        [% IF ( Koha.Preference('OPACDetailQRCode') ) %]
1498
                if (qrcode) {
1499
                    document.getElementById("qrcode").appendChild( qrcode );
1500
                }
1397
1501
1398
            var qrcode = kjua({
1502
                $(".show_qrcode").on("click", function(){
1399
                ecLevel: "H",
1503
                    var qrcodeImg = $("#qrcode");
1400
                render: "canvas",
1504
                    if( qrcodeImg.hasClass("hidden") ){
1401
                rounded: 100,
1505
                        qrcodeImg.removeClass("hidden");
1402
                size: 150,
1506
                    } else {
1403
                text: location.href,
1507
                        qrcodeImg.addClass("hidden");
1404
            });
1508
                    }
1405
            if (qrcode) {
1509
                });
1406
                document.getElementById("qrcode").appendChild( qrcode );
1510
            [% END %]
1407
            }
1408
1511
1409
            $(".show_qrcode").on("click", function(){
1512
            $('#bibliodescriptions').tabs();
1410
                var qrcodeImg = $("#qrcode");
1513
            $(".branch-info-tooltip-trigger").uitooltip({
1411
                if( qrcodeImg.hasClass("hidden") ){
1514
                position: { my: "left+15 center", at: "right center" },
1412
                    qrcodeImg.removeClass("hidden");
1515
                show: 50,
1413
                } else {
1516
                hide: 50,
1414
                    qrcodeImg.addClass("hidden");
1517
                content: function(){
1518
                    var element = $(this).next("div");
1519
                    return element.html();
1415
                }
1520
                }
1416
            });
1521
            });
1417
        [% END %]
1418
1522
1419
        $('#bibliodescriptions').tabs();
1523
            [% IF ( Koha.Preference('OpacBrowseResults') && busc ) %]
1420
        $(".branch-info-tooltip-trigger").uitooltip({
1524
                $(".l_Results").show();
1421
            position: { my: "left+15 center", at: "right center" },
1525
                $("#a_listResults").on("click", function(e){
1422
            show: 50,
1526
                    e.preventDefault();
1423
            hide: 50,
1527
                    $(".results-pagination, .close_pagination, .pg_menu").toggle();
1424
            content: function(){
1528
                });
1425
                var element = $(this).next("div");
1426
                return element.html();
1427
            }
1428
        });
1429
1529
1430
        [% IF ( Koha.Preference('OpacBrowseResults') && busc ) %]
1530
                $(".close_pagination").on("click", function(e){
1431
            $(".l_Results").show();
1531
                    e.preventDefault();
1432
            $("#a_listResults").on("click", function(e){
1532
                    $(".results-pagination, .close_pagination, .pg_menu").toggle();
1433
                e.preventDefault();
1533
                });
1434
                $(".results-pagination, .close_pagination, .pg_menu").toggle();
1534
            [% END %]
1435
            });
1436
1535
1437
            $(".close_pagination").on("click", function(e){
1536
            var columns_settings = [% ColumnsSettings.GetColumns( 'opac', 'biblio-detail', 'holdingst', 'json' ) | $raw %];
1438
                e.preventDefault();
1537
1439
                $(".results-pagination, .close_pagination, .pg_menu").toggle();
1538
            KohaTable("#holdingst", {
1539
                dom: '<"clearfix">t',
1540
                "columnDefs": [
1541
                    { "targets": [ -1 ], "sortable": false, "searchable": false },
1542
                    { "type": "title-string", "targets" : [ "title-string" ] }
1543
                    ],
1544
                "bKohaColumnsUseNames": true,
1545
                "autoWidth": false
1546
            }, columns_settings);
1547
1548
            KohaTable("#otherholdingst", {
1549
                dom: '<"clearfix">t',
1550
                "columnDefs": [
1551
                    { "targets": [ -1 ], "sortable": false, "searchable": false },
1552
                    { "type": "title-string", "targets" : [ "title-string" ] }
1553
                    ],
1554
                "bKohaColumnsUseNames": true,
1555
                "autoWidth": false
1556
            }, columns_settings);
1557
1558
            var serial_column_settings = [% ColumnsSettings.GetColumns( 'opac', 'biblio-detail', 'subscriptionst', 'json' ) | $raw %];
1559
1560
            KohaTable("#subscriptionst", {
1561
                dom: '<"clearfix">t',
1562
                "sorting": [[ 1, "desc" ]],
1563
                "columnDefs": [
1564
                    { "type": "title-string", "targets" : [ "title-string" ] }
1565
                    ],
1566
                "autoWidth": false,
1567
                "bKohaColumnsUseNames": true
1568
            }, serial_column_settings);
1569
1570
        [% IF ( TagsInputEnabled && loggedinusername ) %]
1571
            $(".tag_add").click(function(){
1572
                var thisid = $(this).attr("id");
1573
                thisid = thisid.replace("tag_add", "");
1574
                $(this).hide();
1575
                $("#tagform"+thisid).show();
1576
                $("#newtag"+thisid).focus();
1577
                $("#newtag"+thisid+"_status").empty().hide();
1578
                return false;
1440
            });
1579
            });
1441
        [% END %]
1580
            $(".cancel_tag_add").click(function(){
1442
1581
                var thisid = $(this).attr("id");
1443
        var columns_settings = [% ColumnsSettings.GetColumns( 'opac', 'biblio-detail', 'holdingst', 'json' ) | $raw %];
1582
                thisid = thisid.replace("cancel", "");
1444
1583
                $("#tagform"+thisid).hide();
1445
        KohaTable("#holdingst", {
1584
                $("#tag_add"+thisid).show();
1446
            dom: '<"clearfix">t',
1585
                $("#newtag"+thisid).val("");
1447
            "columnDefs": [
1586
                $("#newtag"+thisid+"_status").empty().hide();
1448
                { "targets": [ -1 ], "sortable": false, "searchable": false },
1449
                { "type": "title-string", "targets" : [ "title-string" ] }
1450
                ],
1451
            "bKohaColumnsUseNames": true,
1452
            "autoWidth": false
1453
        }, columns_settings);
1454
1455
        KohaTable("#otherholdingst", {
1456
            dom: '<"clearfix">t',
1457
            "columnDefs": [
1458
                { "targets": [ -1 ], "sortable": false, "searchable": false },
1459
                { "type": "title-string", "targets" : [ "title-string" ] }
1460
                ],
1461
            "bKohaColumnsUseNames": true,
1462
            "autoWidth": false
1463
        }, columns_settings);
1464
1465
        var serial_column_settings = [% ColumnsSettings.GetColumns( 'opac', 'biblio-detail', 'subscriptionst', 'json' ) | $raw %];
1466
1467
        KohaTable("#subscriptionst", {
1468
            dom: '<"clearfix">t',
1469
            "sorting": [[ 1, "desc" ]],
1470
            "columnDefs": [
1471
                { "type": "title-string", "targets" : [ "title-string" ] }
1472
                ],
1473
            "autoWidth": false,
1474
            "bKohaColumnsUseNames": true
1475
        }, serial_column_settings);
1476
1477
[% IF ( TagsInputEnabled && loggedinusername ) %]
1478
        $(".tag_add").click(function(){
1479
            var thisid = $(this).attr("id");
1480
            thisid = thisid.replace("tag_add","");
1481
            $(this).hide();
1482
            $("#tagform"+thisid).show();
1483
            $("#newtag"+thisid).focus();
1484
            $("#newtag"+thisid+"_status").empty().hide();
1485
            return false;
1486
        });
1487
        $(".cancel_tag_add").click(function(){
1488
            var thisid = $(this).attr("id");
1489
            thisid = thisid.replace("cancel","");
1490
            $("#tagform"+thisid).hide();
1491
            $("#tag_add"+thisid).show();
1492
            $("#newtag"+thisid).val("");
1493
            $("#newtag"+thisid+"_status").empty().hide();
1494
            return false;
1495
        });
1496
        $(".tagbutton").click(function(){
1497
            var thisid = $(this).attr("title");
1498
            var tag = $("#newtag"+thisid).val();
1499
            if (!tag || (tag == "")) {
1500
                alert(MSG_NO_TAG_SPECIFIED);
1501
                return false;
1587
                return false;
1502
            }
1588
            });
1503
            KOHA.Tags.add_tag_button(thisid, tag);
1589
            $(".tagbutton").click(function(){
1504
            return false;
1590
                var thisid = $(this).attr("title");
1505
        });
1591
                var tag = $("#newtag"+thisid).val();
1506
[% END %]
1592
                if (!tag || (tag == "")) {
1593
                    alert(MSG_NO_TAG_SPECIFIED);
1594
                    return false;
1595
                }
1596
                KOHA.Tags.add_tag_button(thisid, tag);
1597
                return false;
1598
            });
1599
        [% END %]
1507
1600
1508
        [%# Note that there is no way atm to target a column with its class name to set it as the default sort order %]
1601
        [% # Note that there is no way atm to target a column with its class name to set it as the default sort order %]
1509
        [% IF Koha.Preference('OpacLocationBranchToDisplay') == 'home' AND Koha.Preference('OPACHoldingsDefaultSortField') == 'homebranch' AND item_level_itypes
1602
        [% IF Koha.Preference('OpacLocationBranchToDisplay') == 'home' AND Koha.Preference('OPACHoldingsDefaultSortField') == 'homebranch' AND item_level_itypes
1510
        OR Koha.Preference('OpacLocationBranchToDisplay') == 'holding' AND Koha.Preference('OPACHoldingsDefaultSortField') == 'holdingbranch' AND item_level_itypes
1603
           OR Koha.Preference('OpacLocationBranchToDisplay') == 'holding' AND Koha.Preference('OPACHoldingsDefaultSortField') == 'holdingbranch' AND item_level_itypes
1511
        OR Koha.Preference('OpacLocationBranchToDisplay') == 'both' AND Koha.Preference('OPACHoldingsDefaultSortField') == 'homebranch' AND NOT item_level_itypes
1604
           OR Koha.Preference('OpacLocationBranchToDisplay') == 'both' AND Koha.Preference('OPACHoldingsDefaultSortField') == 'homebranch' AND NOT item_level_itypes
1512
        OR Koha.Preference('OpacLocationBranchToDisplay') == 'both' AND Koha.Preference('OPACHoldingsDefaultSortField') == 'holdingbranch' AND item_level_itypes %]
1605
           OR Koha.Preference('OpacLocationBranchToDisplay') == 'both' AND Koha.Preference('OPACHoldingsDefaultSortField') == 'holdingbranch' AND item_level_itypes %]
1513
            var default_order_index = 1;
1606
            var default_order_index = 1;
1514
        [% ELSIF Koha.Preference('OpacLocationBranchToDisplay') == 'both' AND Koha.Preference('OPACHoldingsDefaultSortField') == 'homebranch' AND item_level_itypes %]
1607
        [% ELSIF Koha.Preference('OpacLocationBranchToDisplay') == 'both' AND Koha.Preference('OPACHoldingsDefaultSortField') == 'homebranch' AND item_level_itypes %]
1515
            var default_order_index = 2;
1608
            var default_order_index = 2;
Lines 1517-1543 Link Here
1517
            var default_order_index = 0;
1610
            var default_order_index = 0;
1518
        [% END %]
1611
        [% END %]
1519
1612
1520
        [% IF ( query_desc ) %][% IF ( OpacHighlightedWords ) %]var query_desc = "[% query_desc |replace("'", "\'") |replace('\n', '\\n') |replace('\r', '\\r') | html %]";
1613
        [% IF ( query_desc ) %]
1521
            q_array = query_desc.split(" ");
1614
            [% IF ( OpacHighlightedWords ) %]var query_desc = "[% query_desc |replace("'", "\'") |replace('\n', '\\n') |replace('\r', '\\r') | html %]";
1522
            q_array = q_array.filter(function(n){ return n }); // Remove empty strings
1615
                q_array = query_desc.split(" ");
1523
            highlightOn();
1616
                q_array = q_array.filter(function(n){ return n }); // Remove empty strings
1524
            $("#highlight_toggle_on" ).hide().click(function() {highlightOn() ; return false;});
1617
                highlightOn();
1525
            $("#highlight_toggle_off").show().click(function() {highlightOff(); return false;});[% END %][% END %]
1618
                $("#highlight_toggle_on" ).hide().click(function() {highlightOn() ; return false;});
1526
    [% IF ( GoogleJackets ) %]
1619
                $("#highlight_toggle_off").show().click(function() {highlightOff(); return false;});
1527
        KOHA.Google.GetCoverFromIsbn([% covernewwindow | html %]);
1620
            [% END %]
1528
    [% END %]
1621
        [% END %]
1529
    [% IF ( Koha.Preference('OpacCoce') && Koha.Preference('CoceProviders') ) %]
1530
        KOHA.coce.getURL('[% Koha.Preference('CoceHost') | html %]', '[% Koha.Preference('CoceProviders') | html %]',[% covernewwindow | html %]);
1531
    [% END %]
1532
1622
1533
    [% IF OpenLibraryCovers %]
1623
        [% IF ( GoogleJackets ) %]
1534
        KOHA.OpenLibrary.GetCoverFromIsbn();
1624
            KOHA.Google.GetCoverFromIsbn([% covernewwindow | html %]);
1535
    [% END %]
1625
        [% END %]
1536
    [% IF OPACLocalCoverImages %]
1626
1537
        KOHA.LocalCover.GetCoverFromBibnumber(true);
1627
        [% IF ( Koha.Preference('OpacCoce') && Koha.Preference('CoceProviders') ) %]
1538
    [% END %]
1628
            KOHA.coce.getURL('[% Koha.Preference('CoceHost') | html %]', '[% Koha.Preference('CoceProviders') | html %]', [% covernewwindow | html %]);
1539
    [% IF ( NovelistSelectProfile && ( normalized_isbn || normalized_upc ) ) %]
1629
        [% END %]
1540
        novSelect.loadContentForQuery(
1630
1631
        [% IF OpenLibraryCovers %]
1632
            KOHA.OpenLibrary.GetCoverFromIsbn();
1633
        [% END %]
1634
1635
        [% IF OPACLocalCoverImages %]
1636
            KOHA.LocalCover.GetCoverFromBibnumber(true);
1637
        [% END %]
1638
1639
        [% IF ( NovelistSelectProfile && ( normalized_isbn || normalized_upc ) ) %]
1640
            novSelect.loadContentForQuery(
1541
            {
1641
            {
1542
                ClientIdentifier : '[% IF normalized_isbn %][% normalized_isbn | html %][% ELSE %][% normalized_upc | html %][% END %]',
1642
                ClientIdentifier : '[% IF normalized_isbn %][% normalized_isbn | html %][% ELSE %][% normalized_upc | html %][% END %]',
1543
                ISBN : '[% IF normalized_isbn %][% normalized_isbn | html %][% ELSE %][% normalized_upc | html %][% END %]',
1643
                ISBN : '[% IF normalized_isbn %][% normalized_isbn | html %][% ELSE %][% normalized_upc | html %][% END %]',
Lines 1550-1664 Link Here
1550
                    $(".NovelistSelect").show();
1650
                    $(".NovelistSelect").show();
1551
                }
1651
                }
1552
            });
1652
            });
1553
    [% END %]
1653
        [% END %]
1554
1654
1555
[% IF ( OPACShelfBrowser ) %]
1655
        [% IF ( OPACShelfBrowser ) %]
1656
            (function prepareShelfBrowser(){
1556
1657
1557
    (function prepareShelfBrowser(){
1658
                $(".main").on("click", ".close_shelf", function(e){
1659
                    e.preventDefault();
1660
                    $("#shelfbrowser").toggle();
1661
                });
1558
1662
1559
        $(".main").on("click",".close_shelf",function(e){
1663
                $(".main").on("click", "#browser_previous a", function(e){
1560
            e.preventDefault();
1664
                    e.preventDefault();
1561
            $("#shelfbrowser").toggle();
1665
                    $.ajax({
1562
        });
1666
                        url: "/cgi-bin/koha/svc/shelfbrowser.pl",
1563
        $(".main").on("click", "#browser_previous a", function(e){
1667
                        type: "POST",
1564
            e.preventDefault();
1668
                        data: {
1565
            $.ajax({
1669
                            "shelfbrowse_itemnumber": $("#browser_previous a").data( "prev-itemnumber" )
1566
                url: "/cgi-bin/koha/svc/shelfbrowser.pl",
1670
                        },
1567
                type: "POST",
1671
                        success: function(data){
1568
                data: {
1672
                            $("#shelfbrowser").replaceWith(data);
1569
                    "shelfbrowse_itemnumber": $("#browser_previous a").data( "prev-itemnumber" )
1673
                            [% IF ( GoogleJackets ) %]
1570
                },
1674
                              KOHA.Google.GetCoverFromIsbn([% covernewwindow | html %]);
1571
                success: function(data){
1675
                            [% END %]
1572
                    $("#shelfbrowser").replaceWith(data);
1573
                    [% IF ( GoogleJackets ) %]
1574
                      KOHA.Google.GetCoverFromIsbn([% covernewwindow | html %]);
1575
                    [% END %]
1576
                    [% IF ( Koha.Preference('OpacCoce') && Koha.Preference('CoceProviders') ) %]
1577
                      KOHA.coce.getURL('[% Koha.Preference('CoceHost') | html %]', '[% Koha.Preference('CoceProviders') | html %]',[% covernewwindow | html %]);
1578
                    [% END %]
1579
                    [% IF OpenLibraryCovers %]
1580
                      KOHA.OpenLibrary.GetCoverFromIsbn();
1581
                    [% END %]
1582
                    [% IF OPACLocalCoverImages %]
1583
                      KOHA.LocalCover.GetCoverFromBibnumber(true);
1584
                    [% END %]
1585
                }
1586
            });
1587
        });
1588
1676
1589
        $(".main").on("click", "#browser_next a", function(e){
1677
                            [% IF ( Koha.Preference('OpacCoce') && Koha.Preference('CoceProviders') ) %]
1590
            e.preventDefault();
1678
                              KOHA.coce.getURL('[% Koha.Preference('CoceHost') | html %]', '[% Koha.Preference('CoceProviders') | html %]', [% covernewwindow | html %]);
1591
            $.ajax({
1679
                            [% END %]
1592
                  url: "/cgi-bin/koha/svc/shelfbrowser.pl",
1680
1593
                  type: "POST",
1681
                            [% IF OpenLibraryCovers %]
1594
                  data: {
1682
                              KOHA.OpenLibrary.GetCoverFromIsbn();
1595
                    "shelfbrowse_itemnumber": $("#browser_next a").data( "next-itemnumber" )
1683
                            [% END %]
1596
                },
1684
1597
                success: function(data){
1685
                            [% IF OPACLocalCoverImages %]
1598
                    $("#shelfbrowser").replaceWith(data);
1686
                              KOHA.LocalCover.GetCoverFromBibnumber(true);
1599
                    [% IF ( GoogleJackets ) %]
1687
                            [% END %]
1600
                      KOHA.Google.GetCoverFromIsbn([% covernewwindow | html %]);
1688
                        }
1601
                    [% END %]
1689
                    });
1602
                    [% IF ( Koha.Preference('OpacCoce') && Koha.Preference('CoceProviders') ) %]
1690
                });
1603
                      KOHA.coce.getURL('[% Koha.Preference('CoceHost') | html %]', '[% Koha.Preference('CoceProviders') | html %]',[% covernewwindow | html %]);
1691
1604
                    [% END %]
1692
                $(".main").on("click", "#browser_next a", function(e){
1605
                    [% IF OpenLibraryCovers %]
1693
                    e.preventDefault();
1606
                      KOHA.OpenLibrary.GetCoverFromIsbn();
1694
                    $.ajax({
1607
                    [% END %]
1695
                          url: "/cgi-bin/koha/svc/shelfbrowser.pl",
1608
                    [% IF OPACLocalCoverImages %]
1696
                          type: "POST",
1609
                      KOHA.LocalCover.GetCoverFromBibnumber(true);
1697
                          data: {
1610
                    [% END %]
1698
                            "shelfbrowse_itemnumber": $("#browser_next a").data( "next-itemnumber" )
1699
                        },
1700
                        success: function(data){
1701
                            $("#shelfbrowser").replaceWith(data);
1702
                            [% IF ( GoogleJackets ) %]
1703
                                KOHA.Google.GetCoverFromIsbn([% covernewwindow | html %]);
1704
                            [% END %]
1705
1706
                            [% IF ( Koha.Preference('OpacCoce') && Koha.Preference('CoceProviders') ) %]
1707
                                KOHA.coce.getURL('[% Koha.Preference('CoceHost') | html %]', '[% Koha.Preference('CoceProviders') | html %]', [% covernewwindow | html %]);
1708
                            [% END %]
1709
1710
                            [% IF OpenLibraryCovers %]
1711
                                KOHA.OpenLibrary.GetCoverFromIsbn();
1712
                            [% END %]
1713
1714
                            [% IF OPACLocalCoverImages %]
1715
                                KOHA.LocalCover.GetCoverFromBibnumber(true);
1716
                            [% END %]
1717
                        }
1718
                    });
1719
                });
1720
            }());
1721
        [% END %]
1722
1723
        [% IF ( OpacStarRatings != 'disable' ) %]
1724
            // -----------------------------------------------------
1725
            // star-ratings code
1726
            // -----------------------------------------------------
1727
            // hide 'rate' button if javascript enabled
1728
1729
            $('input[name="rate_button"]').remove();
1730
1731
            var rating_enabled = ( $("#star_rating").data("rating-enabled") == "1" ) ? false : true;
1732
            $('#star_rating').barrating({
1733
                theme: 'fontawesome-stars',
1734
                showSelectedRating: false,
1735
                allowEmpty: true,
1736
                deselectable: false,
1737
                readonly: rating_enabled,
1738
                onSelect: function(value, text) {
1739
                    $("#rating-loading").show();
1740
                    $.post("/cgi-bin/koha/opac-ratings-ajax.pl", {
1741
                        rating_old_value: $("#rating_value").attr("value"),
1742
                        borrowernumber: "[% borrowernumber | html %]",
1743
                        biblionumber: "[% biblio.biblionumber | html %]",
1744
                        rating_value: value,
1745
                        auth_error: value
1746
                    }, function (data) {
1747
                            $("#rating_value").val(data.rating_value);
1748
                            if (data.rating_value) {
1749
                                $("#rating_value_text").text(_("Your rating: %s, ").format(data.rating_value));
1750
                                $("#cancel_rating_text").show();
1751
                            } else {
1752
                                $("#rating_value_text").text('');
1753
                                $("#cancel_rating_text").hide();
1754
                            }
1755
                            $("#rating_text").text(_("Average rating: %s (%s votes)").format(data.rating_avg, data.rating_total));
1756
                            $("#rating-loading").hide();
1757
                    }, "json");
1611
                }
1758
                }
1612
            });
1759
            });
1613
        });
1614
    }());
1615
[% END %]
1616
[% IF ( OpacStarRatings != 'disable' ) %]
1617
    // -----------------------------------------------------
1618
    // star-ratings code
1619
    // -----------------------------------------------------
1620
    // hide 'rate' button if javascript enabled
1621
1622
    $('input[name="rate_button"]').remove();
1623
1624
    var rating_enabled = ( $("#star_rating").data("rating-enabled") == "1" ) ? false : true;
1625
    $('#star_rating').barrating({
1626
        theme: 'fontawesome-stars',
1627
        showSelectedRating: false,
1628
        allowEmpty: true,
1629
        deselectable: false,
1630
        readonly: rating_enabled,
1631
        onSelect: function(value, text) {
1632
            $("#rating-loading").show();
1633
            $.post("/cgi-bin/koha/opac-ratings-ajax.pl", {
1634
                rating_old_value: $("#rating_value").attr("value"),
1635
                borrowernumber: "[% borrowernumber | html %]",
1636
                biblionumber: "[% biblio.biblionumber | html %]",
1637
                rating_value: value,
1638
                auth_error: value
1639
            }, function (data) {
1640
                    $("#rating_value").val(data.rating_value);
1641
                    if (data.rating_value) {
1642
                        $("#rating_value_text").text(_("Your rating: %s, ").format(data.rating_value));
1643
                        $("#cancel_rating_text").show();
1644
                    } else {
1645
                        $("#rating_value_text").text('');
1646
                        $("#cancel_rating_text").hide();
1647
                    }
1648
                    $("#rating_text").text(_("Average rating: %s (%s votes)").format(data.rating_avg, data.rating_total));
1649
                    $("#rating-loading").hide();
1650
            }, "json");
1651
        }
1652
    });
1653
1760
1654
    $("#cancel_rating_text a").on("click", function(e){
1761
            $("#cancel_rating_text a").on("click", function(e){
1655
        e.preventDefault();
1762
                e.preventDefault();
1656
        $("#star_rating").barrating("set", "");
1763
                $("#star_rating").barrating("set", "");
1657
    });
1764
            });
1658
1765
1659
[% END # / IF ( OpacStarRatings != 'disable' )%]
1766
        [% END # / IF ( OpacStarRatings != 'disable' ) %]
1660
1767
1661
});
1768
        });
1662
1769
1663
        $(document).ready(function() {
1770
        $(document).ready(function() {
1664
            if( OPACPopupAuthorsSearch == "1" ){
1771
            if( OPACPopupAuthorsSearch == "1" ){
Lines 1672-1678 Link Here
1672
                        "keyword_search" : "su:",
1779
                        "keyword_search" : "su:",
1673
                    }
1780
                    }
1674
                }
1781
                }
1675
                $(".contributors,.subject").on("click", function(e){
1782
                $(".contributors, .subject").on("click", function(e){
1676
                    e.preventDefault();
1783
                    e.preventDefault();
1677
                    var term = $(this).attr("class");
1784
                    var term = $(this).attr("class");
1678
                    var selected_term = $(this).text();
1785
                    var selected_term = $(this).text();
1679
- 

Return to bug 25302