From 06bf4e7248233ecbd590ce89b256929e75cacdcc Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Tue, 25 Aug 2020 14:44:38 +0000 Subject: [PATCH] Bug 21260: Move the count before the callnumbers Content-Type: text/plain; charset=utf-8 The current display is a bit confusing [Call number: A](2) seems to indicate that we have two call numbers A. But what it means here, is: we have two items and we list only one, being A. So, we'd better do something like: Items available for loan: Centerville (2) [Call number: A, ..] Which says we have two items at Centerville, listing only one (A), but indicating with the two dots that there are more. Test plan: Pick a biblio with multiple available items at a branch. Include it in a search and check results display. Test the same but with only one branch in Koha. Signed-off-by: Marcel de Rooy --- .../bootstrap/en/xslt/MARC21slim2OPACResults.xsl | 42 +++++++++++----------- 1 file changed, 20 insertions(+), 22 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl index 9878634d42..3a7f489f6f 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl +++ b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl @@ -34,7 +34,7 @@ - + @@ -1249,23 +1249,21 @@ select="key('item-by-status', 'available')"/> - + + - Call number: - + Call number: + , .. - ( - - ) . , - + @@ -1273,15 +1271,15 @@ + ( + + ) - Call number: - + Call number: + , .. - ( - - ) . , @@ -1293,15 +1291,15 @@ + ( + + ) - Call number: - + Call number: + , .. - ( - - ) . , @@ -1331,15 +1329,15 @@ + ( + + ) Call number: - + , .. - ( - - ) . , -- 2.11.0