]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/share/print_templates/t_checkout.tt2
327a05ea5742be9feff3d9a7ec3fb302105ede28
[working/Evergreen.git] / Open-ILS / src / templates / staff / share / print_templates / t_checkout.tt2
1 <!--
2 Template for printing checkout receipts; fields available include:
3
4 * circulations - list of loans made during this session. Each
5   includes:
6
7   * title
8   * copy_barcode
9   * due_date
10
11 -->
12 <div>
13   <div>[% l('Welcome to [_1]', '{{current_location.name}}') %]</div>
14   <div>[% l('You checked out the following items:') %]</div>
15   <hr/>
16   <ol>
17     <li ng-repeat="checkout in circulations">
18       <div>{{checkout.title}}</div>
19       <div>[% l('Barcode: [_1] Due: [_2]', 
20         '{{checkout.copy.barcode}}',
21         '{{checkout.circ.due_date | egDueDate:$root.egDateAndTimeFormat:checkout.circ.circ_lib:checkout.circ.duration}}') %]</div>
22     </li>
23   </ol>
24   <hr/>
25   <div>{{current_location.shortname}} {{today | date:$root.egDateAndTimeFormat}}</div>
26   <div>[% l('You were helped by [_1]', '{{staff.first_given_name}}') %]</div>
27 <br/>
28