]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/staff/share/print_templates/t_hold_pull_list.tt2
ce23fe499364506a05f5dee69c4562bed03127de
[Evergreen.git] / Open-ILS / src / templates / staff / share / print_templates / t_hold_pull_list.tt2
1 <table id='pull-list-template-table'>
2   <style>
3     #pull-list-template-table td,
4     #pull-list-template-table th {
5       padding: 5px;
6       border: 1px solid #000;
7     }
8   </style>
9   <thead>
10     <tr>
11       <th>[% l('Type') %]</th>
12       <th>[% l('Title') %]</th>
13       <th>[% l('Author') %]</th>
14       <th>[% l('Shelf Location') %]</th>
15       <th>[% l('Call Number') %]</th>
16       <th>[% l('Barcode/Part') %]</th>
17     </tr>
18   </thead>
19   <tbody>
20     <tr ng-repeat="hold_data in holds">
21       <td>{{hold_data.hold.hold_type}}</td>
22       <td>{{hold_data.title}}</td>
23       <td>{{hold_data.author}}</td>
24       <td>{{hold_data.copy.location.name}}</td>
25       <td>{{hold_data.volume.label}}</td>
26       <td>{{hold_data.copy.barcode}} {{hold_data.part.label}}</td>
27     </tr>
28   </tbody>
29 </table>