]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/share/print_templates/t_transit_slip.tt2
afd5aabfd82b318a3deb192e3ea5181bc1aa69bc
[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>{{dest_address.street1}}
19   <div>{{dest_address.street2}}</div>
20   <div>{{dest_address.city}},
21        {{dest_address.state}}
22        {{dest_address.post_code}}</div>
23   <br/>
24
25   [% l('Barcode: [_1]', '{{copy.barcode}}') %]</div>
26   [% l('Title: [_1]', '{{title}}') %]</div>
27   [% l('Author: [_1]', '{{author}}') %]</div>
28
29   <br/>
30
31   <div>[% l('Slip Date: [_1]', '{{today | date:"short"}}') %]</div>
32   <div>[% l('Printed by [_1] at [_2]', 
33     '{{staff.first_given_name}}', '{{current_location.shortname}}') %]</div>
34
35 </div>