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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (+13 lines)
Lines 2313-2318 td.bundle { Link Here
2313
    color: #669900;
2313
    color: #669900;
2314
}
2314
}
2315
2315
2316
#holdings_table {
2317
    .intransit,
2318
    .holdonitem,
2319
    .transitrequested
2320
    .waitingat,
2321
    .heldfor,
2322
    .bundled,
2323
    .recallwaiting,
2324
    .recalledby {
2325
        display: block;
2326
    }
2327
}
2328
2316
#mainuserblock {
2329
#mainuserblock {
2317
    border: 1px solid #E8E8E8;
2330
    border: 1px solid #E8E8E8;
2318
    margin-top: .5em;
2331
    margin-top: .5em;
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc (-3 / +2 lines)
Lines 550-562 Link Here
550
                    [% IF Koha.Preference('UseRecalls') %]
550
                    [% IF Koha.Preference('UseRecalls') %]
551
                        if ( row.recall && ( row.item_id === row.recall.item_id ) ) {
551
                        if ( row.recall && ( row.item_id === row.recall.item_id ) ) {
552
                            if ( row.recall.waiting_date ) {
552
                            if ( row.recall.waiting_date ) {
553
                                nodes += '<span>%s</span>'.format(_("Waiting recall at %s since %s").format(escape_str(row.recall._strings.pickup_library_id.str), $date(row.recall.waiting_date)));
553
                                nodes += '<span class="recallwaiting">%s</span>'.format(_("Waiting recall at %s since %s").format(escape_str(row.recall._strings.pickup_library_id.str), $date(row.recall.waiting_date)));
554
                            } else {
554
                            } else {
555
                                [%# Hacky for patron_to_html in case we simply want to display the patron's library name %]
555
                                [%# Hacky for patron_to_html in case we simply want to display the patron's library name %]
556
                                row.recall.patron.library = { name: libraries_names.get(row.recall.patron.library_id) };
556
                                row.recall.patron.library = { name: libraries_names.get(row.recall.patron.library_id) };
557
557
558
                                let patron_to_html = $patron_to_html(row.recall.patron, {url: true, display_cardnumber: true, hide_patron_name });
558
                                let patron_to_html = $patron_to_html(row.recall.patron, {url: true, display_cardnumber: true, hide_patron_name });
559
                                nodes += '<span>%s</span>'.format(_("Recalled by %s on %s").format(patron_to_html, $date(row.recall.created_date)))
559
                                nodes += '<span class="recalledby">%s</span>'.format(_("Recalled by %s on %s").format(patron_to_html, $date(row.recall.created_date)))
560
                            }
560
                            }
561
                        }
561
                        }
562
                    [% END %]
562
                    [% END %]
563
- 

Return to bug 38767