]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/share/print_templates/t_transit_slip.tt2
LP#1670242 Webstaff checkin transit holds addr fix
[working/Evergreen.git] / Open-ILS / src / templates / staff / share / print_templates / t_transit_slip.tt2
1 <!--
2 Template for printing a transit slip. Fields include:
3
4 * dest_location.name - name of destination library
5 * dest_location.shortname
6 * dest_address.street1
7 * dest_address.street2
8 * dest_address.city
9 * dest_address.state
10 * dest_address.post_code
11 * copy.barcode
12 * title
13 * author
14 -->
15 <div>
16   <div>[% l('This item needs to be routed to [_1]', '<b>{{dest_location.shortname}}</b>') %]</div>
17   <div>{{dest_location.name}}</div>
18   <div ng-if="dest_address">
19     <div>{{dest_address.street1}}</div>
20     <div>{{dest_address.street2}}</div>
21     <div>{{dest_address.city}},
22         {{dest_address.state}}
23         {{dest_address.post_code}}</div>
24   </div>
25   <div ng-if="!dest_address">
26     [% l('We do not have a holds address for this library.') %]
27   </div>
28   <br/>
29
30   [% l('Barcode: [_1]', '{{copy.barcode}}') %]</div>
31   [% l('Title: [_1]', '{{title}}') %]</div>
32   [% l('Author: [_1]', '{{author}}') %]</div>
33
34   <br/>
35
36   <div>[% l('Slip Date: [_1]', '{{today | date:"short"}}') %]</div>
37   <div>[% l('Printed by [_1] at [_2]', 
38     '{{staff.first_given_name}}', '{{current_location.shortname}}') %]</div>
39
40 </div>