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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-2 / +1 lines)
Lines 1536-1542 Note that permanent location is a code, and location may be an authval. Link Here
1536
                            "orderable": true,
1536
                            "orderable": true,
1537
                            "render": function(data, type, row, meta) {
1537
                            "render": function(data, type, row, meta) {
1538
                                if ( row.lost_status == bundle_lost_value ) {
1538
                                if ( row.lost_status == bundle_lost_value ) {
1539
                                    let out = '<span class="lost">' + _("Last seen") + ': ' + row.last_seen_date + '</span>';
1539
                                    let out = '<span class="lost">' + _("Last seen") + ': ' + $date(row.last_seen_date) + '</span>';
1540
                                    if ( row.return_claim ) {
1540
                                    if ( row.return_claim ) {
1541
                                        out = out + '<span class="claims_return">' + _("Claims returned by") + ': ' + $patron_to_html( row.return_claim.patron, { display_cardnumber: false, url: true } ) + '</span>';
1541
                                        out = out + '<span class="claims_return">' + _("Claims returned by") + ': ' + $patron_to_html( row.return_claim.patron, { display_cardnumber: false, url: true } ) + '</span>';
1542
                                    }
1542
                                    }
1543
- 

Return to bug 28854