]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/staff/share/print_templates/t_offline_checkin.tt2
LP 1772053: Cleanup Dan's code.
[Evergreen.git] / Open-ILS / src / templates / staff / share / print_templates / t_offline_checkin.tt2
1 <!--
2 Template for printing offline checkout receipts; fields available include:
3
4 * transactions - list of loans made during this session. Each
5   includes:
6
7   * barcode
8   * backdate
9   * timestamp
10
11 -->
12 <div>
13   <div>[% l('You checked in the following [_1] items:', '{{transactions.length}}') %]</div>
14   <hr/>
15   <ol>
16     <li ng-repeat="checkin in transactions">
17       <div>[% l('Barcode: [_1] Checkin date: [_2]', 
18         '{{checkin.barcode}}',
19         '{{checkin.backdate | date:"short"}}') %]</div>
20     </li>
21   </ol>
22   <hr/>
23   <div>{{today | date:'short'}}</div>
24 <br/>
25