[%- ELSE -%]
<th id='copy_header_library'>[% l("Location") %]</th>
[%- END %]
- <th id='copy_header_callnmber'>[% l("Call Number / Copy Notes") %]</th>
+ <th id='copy_header_callnumber'>[% l("Call Number / Copy Notes") %]</th>
[%- IF has_parts == 'true' %]
<th id='copy_header_part'>[% l("Part") %]</th>
[%- END %]
<tbody class="copy_details_table">
[%- FOREACH peer IN ctx.foreign_copies;
FOREACH bib IN peer.foreign_copy_maps; %]
- <tr class="copy_details_row"><td header='copy_header_shelfloc'>
+ <tr class="copy_details_row"><td headers='copy_header_shelfloc'>
[%- bib_lib_name = ctx.get_aou(bib.target_copy.circ_lib).name | html;
l("[_1] (foreign item)", bib_lib_name); -%]
<ul><li>
</a>
</li></ul>
</td>
- <td header='copy_header_callnumber'>[% bib.target_copy.call_number.label | html %]</td>
- <td header='copy_header_barcode'>[% bib.target_copy.barcode | html %]</td>
- <td header='copy_header_shelfloc'>[% copy_info.copy_location | html %]</td>
- <td header='copy_header_status'>[% copy_info.copy_status | html %]</td>
- <td header='copy_header_due_date'>[% copy_info.due_date | html %]</td>
+ <td headers='copy_header_callnumber'>[% bib.target_copy.call_number.label | html %]</td>
+ <td headers='copy_header_barcode'>[% bib.target_copy.barcode | html %]</td>
+ <td headers='copy_header_shelfloc'>[% copy_info.copy_location | html %]</td>
+ <td headers='copy_header_status'>[% copy_info.copy_status | html %]</td>
+ <td headers='copy_header_due_date'>[% copy_info.due_date | html %]</td>
</tr>
[%- END; # FOREACH peer
END; # FOREACH bib
END;
-%]
<tr class="copy_details_offers_row" property="offers" typeof="Offer">
- [%- IF serial_holdings %]<td header='copy_header_holding_label' class='rdetail-issue-issue'>
+ [%- IF serial_holdings %]<td headers='copy_header_holding_label' class='rdetail-issue-issue'>
[%- copy_info.holding_label | html; -%]
</td>
- [%- ELSE %]<td header='copy_header_library' property="seller">
+ [%- ELSE %]<td headers='copy_header_library' property="seller">
[%-
org_name = ctx.get_aou(copy_info.circ_lib).name;
lib_url = ctx.get_org_setting(copy_info.circ_lib, 'lib.info_url');
<link property="businessFunction" href="http://purl.org/goodrelations/v1#LeaseOut">
<link property="itemOffered" href="#schemarecord">
</td>[% END %]
- <td header='copy_header_callnumber'><span property="sku">[% callnum | html %]</span> [% IF ctx.get_org_setting(CGI.param('loc') OR ctx.aou_tree.id, 'sms.enable') == 1 %](<a href="[% mkurl(ctx.opac_root _ '/sms_cn', {copy_id => copy_info.id}) %]">Text</a>)[% END %]</td>
+ <td headers='copy_header_callnumber'><span property="sku">[% callnum | html %]</span> [% IF ctx.get_org_setting(CGI.param('loc') OR ctx.aou_tree.id, 'sms.enable') == 1 %](<a href="[% mkurl(ctx.opac_root _ '/sms_cn', {copy_id => copy_info.id}) %]">Text</a>)[% END %]</td>
[%- IF has_parts == 'true' %]
- <td header='copy_header_part'>[% copy_info.part_label | html %]</td>
+ <td headers='copy_header_part'>[% copy_info.part_label | html %]</td>
[%- END %]
- <td header='copy_header_barcode' property="serialNumber">
+ <td headers='copy_header_barcode' property="serialNumber">
[%- IF ctx.is_staff -%]
<a href="javascript:void(0)" onclick="xulG.new_tab(xulG.urls.XUL_COPY_STATUS, {}, {'from_item_details_new': true, 'barcodes': ['[%- copy_info.barcode | html | replace('\'', '\\\'') -%]']})">[% copy_info.barcode | html %]</a>
[%- ELSE -%][% copy_info.barcode | html %]
'<meta property="gtin13" content="' _ attrs.gtin13 _ '" />';
END; -%]
</td>
- <td header='copy_header_shelfloc' property="availableAtOrFrom">[% copy_info.copy_location | html %]</td>
+ <td headers='copy_header_shelfloc' property="availableAtOrFrom">[% copy_info.copy_location | html %]</td>
[%- IF ctx.is_staff %]
- <td header='copy_header_age_hold'>
+ <td headers='copy_header_age_hold'>
[% copy_info.age_protect ?
ctx.get_crahp(copy_info.age_protect).name : l('None') | html %]
</td>
- <td header='copy_header_date_format'>[% date.format(
+ <td headers='copy_header_date_format'>[% date.format(
ctx.parse_datetime(copy_info.create_date),
DATE_FORMAT
) %]</td>
[% END # is_staff %]
[% IF ctx.is_staff OR serial_holdings %]
- <td header='copy_header_holdable'>[% # Show copy/volume hold links to staff (without
+ <td headers='copy_header_holdable'>[% # Show copy/volume hold links to staff (without
# checking whether they have permissions to do those).
overall_holdable = (
copy_info.holdable == 't' AND
l("Not holdable");
END %]</td>
[%- END %]
- <td header='copy_header_status'>[%-
+ <td headers='copy_header_status'>[%-
schema_copy_status.${copy_info.status_code};
copy_info.copy_status | html;
-%]</td>
- <td header='due_date'>[%
+ <td headers='copy_header_due_date'>[%
IF copy_info.due_date;
date.format(
ctx.parse_datetime(copy_info.due_date),
[% END %]
[% END %]
-<tr><td header='copy_header_shelfloc'>
+<tr><td headers='copy_header_shelfloc'>
[%- IF copy_info.peer_bib_marc.size > 1;
'<ul>';
FOREACH bib IN copy_info.peer_bib_marc;