Lines 136-146
Link Here
|
136 |
[% IF ( item_header_loop ) %] |
136 |
[% IF ( item_header_loop ) %] |
137 |
<table id="items" class="table table-bordered table-condensed table-striped"> |
137 |
<table id="items" class="table table-bordered table-condensed table-striped"> |
138 |
<caption>Holdings</caption> |
138 |
<caption>Holdings</caption> |
|
|
139 |
<thead> |
139 |
<tr> |
140 |
<tr> |
140 |
[% FOREACH header IN item_header_loop %] |
141 |
[% FOREACH header IN item_header_loop %] |
141 |
<th>[% header %]</th> |
142 |
<th>[% header %]</th> |
142 |
[% END %] |
143 |
[% END %] |
143 |
</tr> |
144 |
</tr> |
|
|
145 |
</thead> |
146 |
<tbody> |
144 |
[% FOREACH item IN item_loop %] |
147 |
[% FOREACH item IN item_loop %] |
145 |
<tr> |
148 |
<tr> |
146 |
[% FOREACH sf_code IN item_subfield_codes %] |
149 |
[% FOREACH sf_code IN item_subfield_codes %] |
Lines 148-153
Link Here
|
148 |
[% END %] |
151 |
[% END %] |
149 |
</tr> |
152 |
</tr> |
150 |
[% END %] |
153 |
[% END %] |
|
|
154 |
</tbody> |
151 |
</table> |
155 |
</table> |
152 |
[% ELSE %] |
156 |
[% ELSE %] |
153 |
<p>No items available.</p> |
157 |
<p>No items available.</p> |
154 |
- |
|
|