Comment 1 for bug 1926971

Revision history for this message
Jason Etheridge (phasefx) wrote :

Thanks Erica!

Branch pushed to collab/phasefx/lp1926971-print-holds-for-patron

Here's a template that exercises the bug/change:

<div>
<div><strong>Welcome to {{current_location.name}} Public Library!</strong></div>
<div>Name: {{patron.first_given_name}} {{patron.family_name}}</div>
<div>Barcode: {{patron.card.barcode}}</div>
 <div>You have the following title on hold:</div>
 <hr/>
 <ol>
   <li ng-repeat="hold in holds">
     <div>{{hold.title}}</div>
   </li>
 </ol>
 <hr/>
 <div>{{current_location.shortname}} {{today | date:$root.egDateAndTimeFormat}}</div>
 <div>You were helped by {{staff.first_given_name}}</div>
<br/>