]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/share/print_templates/t_holds_for_bib.tt2
LP#1350042 Browser client templates/scripts (phase 1)
[working/Evergreen.git] / Open-ILS / src / templates / staff / share / print_templates / t_holds_for_bib.tt2
1 <div>
2   <div>[% l('Holds for record: [_1]', '{{holds[0].title}}') %]</div>
3   <hr/>
4   <style>#holds-for-bib-table td { padding: 5px; }</style>
5   <table id="holds-for-bib-table">
6     <thead>
7       <tr>
8         <th>[% l('Request Date') %]</th>
9         <th>[% l('Patron Barcode') %]</th>
10         <th>[% l('Patron Last') %]</th>
11         <th>[% l('Patron Alias') %]</th>
12         <th>[% l('Current Copy') %]</th>
13       </tr>
14     </thead>
15     <tbody>
16       <tr ng-repeat="hold in holds">
17         <td>{{hold.hold.request_time | date:'short'}}</td>
18         <td>{{hold.patron_barcode}}</td>
19         <td>{{hold.patron_last}}</td>
20         <td>{{hold.patron_alias}}</td>
21         <td>{{hold.copy.barcode}}</td>
22       </tr>
23     </tbody>
24   </table>
25   <hr/>
26   <div>{{current_location.shortname}} {{today | date:'short'}}</div>
27   <div>[% l('Printed by [_1]', '{{staff.first_given_name}}') %]</div>
28 <br/>
29