]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/staff/circ/curbside/t_holds_list.tt2
LP#1879983: AngularJS staff interface for curbside pickup
[Evergreen.git] / Open-ILS / src / templates / staff / circ / curbside / t_holds_list.tt2
1 <ul style="white-space: normal;">
2   <li ng-repeat="hold in holds">
3     {{bibData[hold.id()].title()}} / {{bibData[hold.id()].author()}}<br>
4     <a href="./cat/item/{{hold.current_copy().id()}}" target="_blank">
5       {{hold.current_copy().barcode()}}
6       <span class="glyphicon glyphicon-new-window"></span>
7     </a>
8     <div ng-if="slot.staged() && slot.staged() < hold.shelf_time()" class="alert alert-warning">
9       [% l('Check item; came in after appointment was staged.') %]
10     </div>
11   </li>
12 </ul>