]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/staff/circ/share/t_barcode_choice_dialog.tt2
LP#1699566: item barcode completion in web client
[Evergreen.git] / Open-ILS / src / templates / staff / circ / share / t_barcode_choice_dialog.tt2
1 <div>
2   <div class="modal-header">
3     <button type="button" class="close" ng-click="cancel()" 
4       aria-hidden="true">&times;</button>
5     <h4 class="modal-title">[% l('Barcode Choice') %]</h4>
6   </div>
7   <div class="modal-body">
8     <div>
9       [% l('After auto completion multiple barcodes may match your input. Please choose the barcode you intended below.') %]
10     </div>
11   </div>
12   <div class="modal-footer">
13     <div ng-repeat="match in matches">
14       <button class="btn" ng-click="ok(match.barcode)">
15       {{match.barcode}} : {{match.title}}[% l(' from ') %]{{match.org_name}} ({{match.org_shortname}})
16       </button>
17     </div>
18     <div>
19       <button class="btn" ng-click="cancel()">[% l('None of the above') %]</button>
20     </div>
21   </div>
22 </div>