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