Lines 1435-1440
Note that permanent location is a code, and location may be an authval.
Link Here
|
1435 |
[% INCLUDE 'columns_settings.inc' %] |
1435 |
[% INCLUDE 'columns_settings.inc' %] |
1436 |
[% INCLUDE 'js-date-format.inc' %] |
1436 |
[% INCLUDE 'js-date-format.inc' %] |
1437 |
[% INCLUDE 'js-patron-format.inc' %] |
1437 |
[% INCLUDE 'js-patron-format.inc' %] |
|
|
1438 |
[% INCLUDE 'js-biblio-format.inc' %] |
1438 |
[% Asset.js("js/browser.js") | $raw %] |
1439 |
[% Asset.js("js/browser.js") | $raw %] |
1439 |
[% Asset.js("js/table_filters.js") | $raw %] |
1440 |
[% Asset.js("js/table_filters.js") | $raw %] |
1440 |
<script> |
1441 |
<script> |
Lines 1490-1511
Note that permanent location is a code, and location may be an authval.
Link Here
|
1490 |
} ], |
1491 |
} ], |
1491 |
"columns": [ |
1492 |
"columns": [ |
1492 |
{ |
1493 |
{ |
1493 |
"data": "biblio.title:biblio.medium", |
1494 |
"data": "biblio.title:biblio.subtitle:biblio.medium", |
1494 |
"title": _("Title"), |
1495 |
"title": _("Title"), |
1495 |
"searchable": true, |
1496 |
"searchable": true, |
1496 |
"orderable": true, |
1497 |
"orderable": true, |
1497 |
"render": function(data, type, row, meta) { |
1498 |
"render": function(data, type, row, meta) { |
1498 |
var title = ""; |
1499 |
return $biblio_to_html(row.biblio, { link: 1 }); |
1499 |
if ( row.biblio.title ) { |
|
|
1500 |
title = title.concat('<span class="biblio-title">',row.biblio.title,'</span>'); |
1501 |
} |
1502 |
if ( row.biblio.subtitle ) { |
1503 |
title = title.concat('<span class="biblio-subtitle">',row.biblio.subtitle,'</span>'); |
1504 |
} |
1505 |
if ( row.biblio.medium ) { |
1506 |
title = title.concat('<span class="biblio-medium">',row.biblio.medium,'</span>'); |
1507 |
} |
1508 |
return title; |
1509 |
} |
1500 |
} |
1510 |
}, |
1501 |
}, |
1511 |
{ |
1502 |
{ |
1512 |
- |
|
|