Lines 1598-1603
Note that permanent location is a code, and location may be an authval.
Link Here
|
1598 |
[% INCLUDE 'columns_settings.inc' %] |
1598 |
[% INCLUDE 'columns_settings.inc' %] |
1599 |
[% INCLUDE 'js-date-format.inc' %] |
1599 |
[% INCLUDE 'js-date-format.inc' %] |
1600 |
[% INCLUDE 'js-patron-format.inc' %] |
1600 |
[% INCLUDE 'js-patron-format.inc' %] |
|
|
1601 |
[% INCLUDE 'js-biblio-format.inc' %] |
1601 |
[% Asset.js("js/browser.js") | $raw %] |
1602 |
[% Asset.js("js/browser.js") | $raw %] |
1602 |
[% Asset.js("js/table_filters.js") | $raw %] |
1603 |
[% Asset.js("js/table_filters.js") | $raw %] |
1603 |
<script> |
1604 |
<script> |
Lines 1653-1674
Note that permanent location is a code, and location may be an authval.
Link Here
|
1653 |
} ], |
1654 |
} ], |
1654 |
"columns": [ |
1655 |
"columns": [ |
1655 |
{ |
1656 |
{ |
1656 |
"data": "biblio.title:biblio.medium", |
1657 |
"data": "biblio.title:biblio.subtitle:biblio.medium", |
1657 |
"title": _("Title"), |
1658 |
"title": _("Title"), |
1658 |
"searchable": true, |
1659 |
"searchable": true, |
1659 |
"orderable": true, |
1660 |
"orderable": true, |
1660 |
"render": function(data, type, row, meta) { |
1661 |
"render": function(data, type, row, meta) { |
1661 |
var title = ""; |
1662 |
return $biblio_to_html(row.biblio, { link: 1 }); |
1662 |
if ( row.biblio.title ) { |
|
|
1663 |
title = title.concat('<span class="biblio-title">',row.biblio.title,'</span>'); |
1664 |
} |
1665 |
if ( row.biblio.subtitle ) { |
1666 |
title = title.concat('<span class="biblio-subtitle">',row.biblio.subtitle,'</span>'); |
1667 |
} |
1668 |
if ( row.biblio.medium ) { |
1669 |
title = title.concat('<span class="biblio-medium">',row.biblio.medium,'</span>'); |
1670 |
} |
1671 |
return title; |
1672 |
} |
1663 |
} |
1673 |
}, |
1664 |
}, |
1674 |
{ |
1665 |
{ |
1675 |
- |
|
|