From b66dafb36ee5623dc3b5392026a68d0bb37338be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CByWater?= <“staff@bywatersolutions.com”> Date: Fri, 13 Mar 2015 09:53:40 -0400 Subject: [PATCH] [Signed-off] Bug 13832 - Missing table header IDs on record holdings table in OPAC MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All but two of the table headers in the item holdings table in the opac have identifiers. The remaining two should be added so they can be modified easily with CSS. Test Plan: 1) Apply this patch 2) View the holdings table for a record 3) Note the new id field for the item holds column 4) Note the new id field for the hold prioirty column ( if enabled ) Followed test plan. Patch behaves as expected. Signed-off-by: Marc Véron --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt index 3e5364f..dc759b6 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt @@ -1168,9 +1168,9 @@ Date due [% IF ( OPACShowBarcode ) %]Barcode[% END %] [% IF holds_count.defined %] - Item holds + Item holds [% ELSIF show_priority %] - Item hold queue priority + Item hold queue priority [% END %] [% IF ( ShowCourseReservesHeader ) %]Course reserves[% END %] -- 1.7.10.4