From f30293fcc173d30cc1346f3d5c0b4d601f7e4e17 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 10 May 2024 14:33:29 +0000 Subject: [PATCH] Bug 35994: (follow-up) Add class for customization Also wraps statuses into b instead of the SWITCH statement, which should hopefully help to make translation a little nicer. Signed-off-by: Katrin Fischer --- .../prog/en/modules/catalogue/detail.tt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt index 9571ae60c0..be34655b04 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -39,14 +39,14 @@ [% BLOCK acq_status %] - + [% SWITCH myvar %] - [% CASE 'unlinked' %]Unlinked - [% CASE 'acquired' %]Acquired - [% CASE 'processing' %]Processing - [% CASE 'cancelled' %]Cancelled + [% CASE 'unlinked' %]Unlinked + [% CASE 'acquired' %]Acquired + [% CASE 'processing' %]Processing + [% CASE 'cancelled' %]Cancelled [% END %] - + [% END %] @@ -493,7 +493,7 @@ [% IF Koha.Preference('AcquisitionDetails') %]
-

This bibliographic record has acquisition status: [% PROCESS acq_status myvar=acq_status %] +

This bibliographic record has acquisition status: [% PROCESS acq_status myvar=acq_status %]

[% IF orders.count %] -- 2.39.5