Lines 35-41
Link Here
|
35 |
<th id="[% tab | html %]_materials" data-colname="[% tab | html %]_materials">Materials specified</th> |
35 |
<th id="[% tab | html %]_materials" data-colname="[% tab | html %]_materials">Materials specified</th> |
36 |
<th id="[% tab | html %]_itemnotes" data-colname="[% tab | html %]_itemnotes">Public notes</th> |
36 |
<th id="[% tab | html %]_itemnotes" data-colname="[% tab | html %]_itemnotes">Public notes</th> |
37 |
<th id="[% tab | html %]_itemnotes_nonpublic" data-colname="[% tab | html %]_itemnotes_nonpublic">Non-public notes</th> |
37 |
<th id="[% tab | html %]_itemnotes_nonpublic" data-colname="[% tab | html %]_itemnotes_nonpublic">Non-public notes</th> |
38 |
<th id="[% tab | html %]_hostrecord" data-colname="[% tab | html %]_hostrecord">Host records</th> |
38 |
[% IF Koha.Preference('EasyAnalyticalRecords') %]<th id="[% tab | html %]_hostrecord" data-colname="[% tab | html %]_hostrecord">Host records</th>[% END %] |
39 |
[% IF ( analyze ) %]<th id="[% tab | html %]_usedin" data-colname="[% tab | html %]_usedin">Used in</th><th></th>[% END %] |
39 |
[% IF ( analyze ) %]<th id="[% tab | html %]_usedin" data-colname="[% tab | html %]_usedin">Used in</th><th></th>[% END %] |
40 |
[% IF Koha.Preference('UseCourseReserves') %]<th id="[% tab | html %]_course_reserves" data-colname="[% tab | html %]_course_reserves">Course reserves</th>[% END %] |
40 |
[% IF Koha.Preference('UseCourseReserves') %]<th id="[% tab | html %]_course_reserves" data-colname="[% tab | html %]_course_reserves">Course reserves</th>[% END %] |
41 |
[% IF ( SpineLabelShowPrintOnBibDetails ) %]<th id="[% tab | html %]_spinelabel" data-colname="[% tab | html %]_spinelabel" class="NoSort">Spine label</th>[% END %] |
41 |
[% IF ( SpineLabelShowPrintOnBibDetails ) %]<th id="[% tab | html %]_spinelabel" data-colname="[% tab | html %]_spinelabel" class="NoSort">Spine label</th>[% END %] |
Lines 222-229
Link Here
|
222 |
embed.push('course_item.course_reserves.course'); |
222 |
embed.push('course_item.course_reserves.course'); |
223 |
[% END %] |
223 |
[% END %] |
224 |
|
224 |
|
225 |
// For host records |
225 |
[% IF Koha.Preference('EasyAnalyticalRecords') %] |
226 |
embed.push('biblio.title'); |
226 |
// For host records |
|
|
227 |
embed.push('biblio.title'); |
228 |
[% END %] |
227 |
|
229 |
|
228 |
[% IF analyze %] |
230 |
[% IF analyze %] |
229 |
embed.push('analytics_count'); |
231 |
embed.push('analytics_count'); |
Lines 659-664
Link Here
|
659 |
return escape_str(row.internal_notes); |
661 |
return escape_str(row.internal_notes); |
660 |
} |
662 |
} |
661 |
}, |
663 |
}, |
|
|
664 |
[% IF Koha.Preference('EasyAnalyticalRecords') %] |
662 |
{ |
665 |
{ |
663 |
data: "biblio.title", |
666 |
data: "biblio.title", |
664 |
searchable: false, |
667 |
searchable: false, |
Lines 668-673
Link Here
|
668 |
return '<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=%s">%s</a>'.format(row.biblio_id, row.biblio.title); |
671 |
return '<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=%s">%s</a>'.format(row.biblio_id, row.biblio.title); |
669 |
} |
672 |
} |
670 |
}, |
673 |
}, |
|
|
674 |
[% END %] |
671 |
[% IF analyze %] |
675 |
[% IF analyze %] |
672 |
{ |
676 |
{ |
673 |
data: "analytics_count", |
677 |
data: "analytics_count", |
674 |
- |
|
|