From 1f08491dc5804e47a0c69aaff9c5a6be59caf83b Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 31 Aug 2012 09:58:53 -0400 Subject: [PATCH] Bug 8688 - Followup - Append button to the "checked out" information. Content-Type: text/plain; charset="utf-8" --- .../prog/en/modules/catalogue/detail.tt | 35 ++++++++------------ 1 files changed, 14 insertions(+), 21 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt index ec580e3..80c85e5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -322,7 +322,6 @@ function recall_item(itemnumber) { [% IF ( SpineLabelShowPrintOnBibDetails ) %]Spine label[% END %] [% IF ( hostrecords ) %]Host records[% END %] [% IF ( analyze ) %]Used in[% END %] - [% IF ( items_checked_out ) %]Recall[% END %] [% FOREACH itemloo IN itemloop %] @@ -341,18 +340,20 @@ function recall_item(itemnumber) { [% IF ( itemloo.datedue ) %] - Checked out - [% UNLESS ( itemloo.NOTSAMEBRANCH ) %] - to - [% IF ( itemloo.hidepatronname ) %] - [% itemloo.cardnumber %] - [% ELSE %] - [% itemloo.firstname %] [% itemloo.surname %] - [% END %] - - [% END %] - : due [% itemloo.datedue %] - + Checked out + [% UNLESS ( itemloo.NOTSAMEBRANCH ) %] + to + [% IF ( itemloo.hidepatronname ) %] + [% itemloo.cardnumber %] + [% ELSE %] + [% itemloo.firstname %] [% itemloo.surname %] + [% END %] + + [% END %] + : due [% itemloo.datedue %] + + + [% ELSIF ( itemloo.transfertwhen ) %] In transit from [% itemloo.transfertfrom %], to [% itemloo.transfertto %], since [% itemloo.transfertwhen %] @@ -459,14 +460,6 @@ function recall_item(itemnumber) { Create analytics [% END %] - [% IF ( items_checked_out ) %] - - [% IF ( itemloo.onloan ) %] - - [% END %] - - [% END %] - [% END %] -- 1.7.2.5