<th>[% l('Title') %]</th>
<th>[% l('Author') %]</th>
<th>[% l('Shelf Location') %]</th>
+ <th>[% l('Call Number Prefix') %]</th>
<th>[% l('Call Number') %]</th>
+ <th>[% l('Call Number Suffix') %]</th>
<th>[% l('Barcode/Part') %]</th>
</tr>
</thead>
<tbody>
- <tr ng-repeat="hold_data in holds | orderBy : ['hold._copy_location_position', 'volume.prefix', 'volume.label']">
+ <tr ng-repeat="hold_data in holds | orderBy : ['hold._copy_location_position', 'volume.prefix', 'volume.label', 'volume.suffix']">
<td>{{hold_data.hold.hold_type}}</td>
<td>{{hold_data.title}}</td>
<td>{{hold_data.author}}</td>
<td>{{hold_data.copy.location.name}}</td>
+ <td>{{hold_data.volume.prefix}}</td>
<td>{{hold_data.volume.label}}</td>
+ <td>{{hold_data.volume.suffix}}</td>
<td>{{hold_data.copy.barcode}} {{hold_data.part.label}}</td>
</tr>
</tbody>