From 3b6226348b50d3157e0994489138c53ab3cd308e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Tue, 3 Nov 2015 20:06:25 +0100 Subject: [PATCH] Bug 15091: Batch Checkout: Set titles above result tables This patch is to clarify the results that are displayed while performing a batch checkout. It is not the full solution for what is described in the video in comment #2, but it tells the user what the information in the table is about. A second patch is planned to address the case where the issues are confirmed but not can be fulfilled because the user's fines reach the threshold while checking out the items. --- .../prog/en/modules/circ/circulation_batch_checkouts.tt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt index 4e392d2..b7b6077 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt @@ -85,7 +85,10 @@ $(document).ready(function() { [% ELSE %] [% IF confirmation_needed && CAN_user_circulate_force_checkout %] +

Batch checkout confirmation [% IF borrowernumber %] for [% INCLUDE 'patron-title.inc' invert_name = 1 %] [% END %]

+ [% ELSE %] +

Batch checkout information [% IF borrowernumber %] for [% INCLUDE 'patron-title.inc' invert_name = 1 %] [% END %]

[% END %] -- 1.7.10.4