From dd1216d82a987fff09fdd1f48ca313822ec7dfe4 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 10 Mar 2025 16:08:40 +0100 Subject: [PATCH] Bug 39081: Adjust the result table Signed-off-by: Magnus Enger --- .../prog/en/modules/tools/batch_extend_due_dates.tt | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt index 3be0c7c6e9..52b9c1fb4f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt @@ -228,11 +228,11 @@ [% FOR checkout IN checkouts %] - [% checkout.date_due | $KohaDates as_due_date => 1 %] + [% checkout.date_due | $KohaDates as_due_date => 1 %] [% checkout.item.biblio.title | html %] [% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %] [% checkout.item.home_branch.branchname | html %] - [% checkout.issuedate | $KohaDates %] + [% checkout.issuedate | $KohaDates %] [% Branches.GetName( checkout.branchcode ) | html %] [% END %] @@ -275,10 +275,7 @@ }); $("#checkouts_result").kohaTable({ - columnDefs: [ - { targets: [0, 3], orderable: false, searchable: false }, - { targets: [1], type: "num-html" }, - ], + columnDefs: [{ targets: [2], orderable: false, searchable: false }], dom: "t", order: [], paginate: false, -- 2.34.1