@@ -, +, @@ --- .../en/modules/circ/circulation_batch_checkouts.tt | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt @@ -147,9 +147,6 @@ [% IF checkout_info.RESERVE_WAITING %]
  • This item is waiting for another patron.
  • [% END %] - [% IF checkout_info.RESERVED %] -
  • This item is on hold for another patron.
  • - [% END %] [% IF checkout_info.ISSUED_TO_ANOTHER %]
  • This item is checked out to another patron. [% IF CAN_user_circulate_force_checkout %] @@ -190,10 +187,10 @@ [% END %] - [% IF NOT checkout_info.IMPOSSIBLE && ( CAN_user_circulate_force_checkout or checkout_info.HIGHHOLDS ) %] - [% IF checkout_info.RESERVED || checkout_info.RESERVE_WAITING %] -
  • This item is on hold for another patron. The hold will be overridden, but not cancelled.
  • - [% END %] + [% IF NOT checkout_info.IMPOSSIBLE && ( CAN_user_circulate_force_checkout || checkout_info.HIGHHOLDS ) && ( checkout_info.RESERVED || checkout_info.RESERVE_WAITING ) %] +
  • This item is on hold for another patron. The hold will be overridden, but not cancelled.
  • + [% ELSIF checkout_info.RESERVED %] +
  • This item is on hold for another patron.
  • [% END %] [% IF checkout_info.PREVISSUE %] --