]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/share/print_templates/t_holds_for_patron.tt2
LP2061136 - Stamping 1405 DB upgrade script
[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 * patron - has several fields from the patron object, but does not include the financial summary
5 * holds - a list of hold request, each of which includes
6   * hold - details about the hold
7   * copy - data for an item
8   * volume - data for a call number
9   * author
10   * title
11
12 -->
13 <div>
14   <div>[% l('Welcome to [_1]', '{{current_location.name}}') %]</div>
15   <div>[% l('You have the following title on hold:') %]</div>
16   <hr/>
17   <ol>
18     <li ng-repeat="hold in holds">
19       <div>{{hold.title}}</div>
20     </li>
21   </ol>
22   <hr/>
23   <div>{{current_location.shortname}} {{today | date:$root.egDateAndTimeFormat}}</div>
24   <div>[% l('You were helped by [_1]', '{{staff.first_given_name}}') %]</div>
25 <br/>
26