From b7ae20ad850dfdfb6510ececc91936fcca2fdc68 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 17 Nov 2022 19:13:33 +0000 Subject: [PATCH] Bug 32241: Add page-section to list of records in batch record modificaton (tool) This patch modifies the batch record modification page template so that the preview of submitted records is contained in a .page-section container. To test, apply the patch and go to Cataloging -> Batch record modification. Submit a batch of bibliographic record numbers and a batch of authority record numbers. In both cases the page which previews the list of submitted records in a table should be correctly styled. Signed-off-by: Katrin Fischer --- .../tools/batch_record_modification.tt | 80 ++++++++++--------- 1 file changed, 42 insertions(+), 38 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_record_modification.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_record_modification.tt index aaf1ab9f66..7e166637e9 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_record_modification.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_record_modification.tt @@ -201,54 +201,58 @@ Select all | Clear all - - - - - - - - - - - [% FOR biblio IN records %] +
+
 BiblionumberTitle 
+ - - - - + + + + - [% END %] - -
[% biblio.biblionumber | html %][% biblio.title | html %] - Show MARC -  BiblionumberTitle 
+ + + [% FOR biblio IN records %] + + + [% biblio.biblionumber | html %] + [% biblio.title | html %] + + Show MARC + + + [% END %] + + +
Reminder: this action will modify all selected biblios!
[% ELSE %] - - - - - - - - - - - [% FOR authority IN records %] +
+
AuthIDSummary 
+ - - - - + + + - [% END %] - -
[% authority.authid | html %][% PROCESS authresult summary=authority.summary authid=authority.authid %] Show MARC + AuthIDSummary 
+ + + [% FOR authority IN records %] + + + [% authority.authid | html %] + [% PROCESS authresult summary=authority.summary authid=authority.authid %] + Show MARC + + [% END %] + + +
Reminder: this action will modify all selected authorities!
[% END %]
-- 2.30.2