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