Bug 13832 - Missing table header IDs on record holdings table in OPAC

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 <veron@veron.ch>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
This commit is contained in:
“ByWater 2015-03-13 09:53:40 -04:00 committed by Tomas Cohen Arazi
parent d269bef7eb
commit 0e8927a5fa

View file

@ -1168,9 +1168,9 @@
<th id="item_datedue" class="date_due">Date due</th>
[% IF ( OPACShowBarcode ) %]<th id="item_barcode" class="barcode">Barcode</th>[% END %]
[% IF holds_count.defined %]
<th>Item holds</th>
<th id="item_holds">Item holds</th>
[% ELSIF show_priority %]
<th>Item hold queue priority</th>
<th id="item_priority">Item hold queue priority</th>
[% END %]
[% IF ( ShowCourseReservesHeader ) %]<th id="item_coursereserves">Course reserves</th>[% END %]
</tr>