From b7e88ef74bc2f163feda48000ad06f209b53bbf5 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 10 Dec 2012 15:26:27 +0100 Subject: [PATCH] Bug 9253: Mark items "On hold" at the opac If an item is reserved, at the opac it is marked as available. Test plan: - Reserve an item for a patron - See the intranet display page for the reserved notice. The item is marked as "on hold" - See the opac display page for the reserved notice. The item is marked as "available" - apply the patch - See the opac diplay page for the reserved notice. The item is marked as "on hold" --- koha-tmpl/opac-tmpl/prog/en/includes/item-status.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/koha-tmpl/opac-tmpl/prog/en/includes/item-status.inc b/koha-tmpl/opac-tmpl/prog/en/includes/item-status.inc index 98fdb38..f624c6b 100644 --- a/koha-tmpl/opac-tmpl/prog/en/includes/item-status.inc +++ b/koha-tmpl/opac-tmpl/prog/en/includes/item-status.inc @@ -11,6 +11,8 @@ to [% item.transfertto %] since [% item.transfertwhen %] [% ELSIF ( item.waiting ) %] On hold +[% ELSIF ( item.onhold ) %] + On hold [% ELSIF ( item.wthdrawn ) %] Item withdrawn [% ELSIF ( item.itemlost ) %] -- 1.7.10.4