From 2d2c300ae52cc64861f10badd58e402b16d4cf94 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 16 Oct 2023 12:50:06 +0000 Subject: [PATCH] Bug 35055: Exclude actions column from patron search results DataTables export This patch updates the markup of the patron search results table so that the "actions" column (Edit, Check out) are excluded when using the DataTables "Export" button. The configuration was already in place but the column header lacked the required class. To test, apply the patch and perform a patron search which will return multiple results. Click the "Export" control at the top of the patron search results table and choose "Print." In the print preview there should be no final column containing "Edit" and "Check out." Signed-off-by: Barbara Johnson Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc index 90a7aa1a79..18fbf42931 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc @@ -161,7 +161,7 @@ [% CASE 'phone' %]Phone [% CASE 'checkouts' %]Checkouts [% CASE 'account_balance' %]Fines - [% CASE 'action' %]  + [% CASE 'action' %]  [% END %] [% END %] -- 2.30.2