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 547-559 Link Here
547
                    [% IF Koha.Preference('UseRecalls') %]
547
                    [% IF Koha.Preference('UseRecalls') %]
548
                        if ( row.recall && ( row.item_id === row.recall.item_id ) ) {
548
                        if ( row.recall && ( row.item_id === row.recall.item_id ) ) {
549
                            if ( row.recall.waiting_date ) {
549
                            if ( row.recall.waiting_date ) {
550
                                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)));
550
                                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)));
551
                            } else {
551
                            } else {
552
                                [%# Hacky for patron_to_html in case we simply want to display the patron's library name %]
552
                                [%# Hacky for patron_to_html in case we simply want to display the patron's library name %]
553
                                row.recall.patron.library = { name: libraries_names.get(row.recall.patron.library_id) };
553
                                row.recall.patron.library = { name: libraries_names.get(row.recall.patron.library_id) };
554
554
555
                                let patron_to_html = $patron_to_html(row.recall.patron, {url: true, display_cardnumber: true, hide_patron_name });
555
                                let patron_to_html = $patron_to_html(row.recall.patron, {url: true, display_cardnumber: true, hide_patron_name });
556
                                nodes += '<span>%s</span>'.format(_("Recalled by %s on %s").format(patron_to_html, $date(row.recall.created_date)))
556
                                nodes += '<span class="recalledby">%s</span>'.format(_("Recalled by %s on %s").format(patron_to_html, $date(row.recall.created_date)))
557
                            }
557
                            }
558
                        }
558
                        }
559
                    [% END %]
559
                    [% END %]
560
- 

Return to bug 38767