]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/share/print_templates/t_hold_shelf_slip.tt2
LP#1350042 Browser client templates/scripts (phase 1)
[working/Evergreen.git] / Open-ILS / src / templates / staff / share / print_templates / t_hold_shelf_slip.tt2
1 <div>
2   <div ng-switch on="hold.behind_desk">
3     <div ng-switch-when="t">
4       [% l('This item needs to be routed to the [_1]Private Holds Shelf[_2].',
5         '<strong>','</strong>') %]
6     </div>
7     <div ng-switch-when="f">
8       [% l('This item needs to be routed to the [_1]Public Holds Shelf[_2].',
9         '<strong>','</strong>') %]
10     </div>
11   </div>
12   <br/>
13
14   [% l('Barcode: [_1]', '{{copy.barcode}}') %]</div>
15   [% l('Title: [_1]', '{{title}}') %]</div>
16
17   <br/>
18   <br/>
19
20   <div>[% l('Hold for patron [_1], [_2] [_3]',
21     '{{patron.family_given_name}}',
22     '{{patron.first_given_name}}',
23     '{{patron.second_given_name}}') %]</div>
24   <div>[% l('Barcode: [_1]', '{{patron.card.barcode}}') %]</div>
25   <div ng-if="hold.phone_notify">[% l('Notify by phone: [_1]', '{{hold.phone_notify}}') %]</div>
26   <div ng-if="hold.sms_notify">[% l('Notify by text: [_1]', '{{hold.sms_notify}}') %]</div>
27   <div ng-if="hold.email_notify == 't'">[% l('Notify by email: [_1]', '{{patron.email}}') %]</div>
28
29   <br/>
30
31   <div>[% l('Request Date: [_1]', 
32     '{{hold.request_time | date:"short"}}') %]</div>
33   <div>[% l('Slip Date: [_1]', '{{today | date:"short"}}') %]</div>
34   <div>[% l('Printed by [_1] at [_2]', 
35     '{{staff.first_given_name}}', '{{current_location.shortname}}') %]</div>
36
37 </div>