]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/share/print_templates/t_holds_for_patron.tt2
LP1737540: Add Patron Information to Receipts
[working/Evergreen.git] / Open-ILS / src / templates / staff / share / print_templates / t_holds_for_patron.tt2
1 <!--
2 Template for printing a list of hold requests for a patron. Fields include:
3
4 * holds - a list of hold request, each of which includes
5  
6   * title
7
8 -->
9 <div>
10   <div>[% l('Welcome to [_1]', '{{current_location.name}}') %]</div>
11   <div>[% l('You have the following title on hold:') %]</div>
12   <hr/>
13   <ol>
14     <li ng-repeat="hold in holds">
15       <div>{{hold.title}}</div>
16     </li>
17   </ol>
18   <hr/>
19   <div>{{current_location.shortname}} {{today | date:$root.egDateAndTimeFormat}}</div>
20   <div>[% l('You were helped by [_1]', '{{staff.first_given_name}}') %]</div>
21 <br/>
22