From 34677f3d9139a8688148c62ed4b88305bb0793c3 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" Signed-off-by: Mirko Tietgen Patch has described effect on OPAC. Opposed to the test plan I have 'available' in intranet though. Not in the scope of this patch so signed off. --- .../opac-tmpl/prog/en/includes/item-status.inc | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) 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.2.5