From adf49c961c1aa5a0d0b785bc44f1e46bc0271fc0 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 21 Jan 2021 15:12:26 +0000 Subject: [PATCH] Bug 22752: (follow-up) Add style; Only show message about item-level holds I think it's generally assumed that a hold has, by default, been made at the bibliographic level. I think it's sufficent to add a note for only item-level holds. To test, apply the patch and log into the OPAC as a user who has multiple holds, some at the bibliographic level and some at the item level. - Go to Your summary --> Holds - Confirm that any item-level hold has a note under the title: "Item on hold ". - The note should be on a new line and styled differently than the other text. --- koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc index dfa096141c..78735ba4a0 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc @@ -59,9 +59,7 @@ [% END %] [% HOLD.biblio.author | html %] [% IF HOLD.item_level_hold %] - Only item [% HOLD.item.barcode | html %] - [% ELSE %] - Next available item +

Item on hold: [% HOLD.item.barcode | html %]

[% END %] -- 2.11.0