]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/circ/share/t_bad_barcode_dialog.tt2
LP#1718032 Patron merge honors group perms; no self-merge
[working/Evergreen.git] / Open-ILS / src / templates / staff / circ / share / t_bad_barcode_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('Bad Barcode') %]</h4>
6   </div>
7   <div class="modal-body">
8     <img src="[% ctx.media_prefix %]/images/bad_barcode.png"/>
9     <div>
10 [% |l('{{barcode}}') %]
11 Invalid barcode: <div class="strong-text-4">[_1]</div>
12 Your entry has a bad check digit, possibly due to a bad scan.<br/>
13 Choose Cancel to try again, or Accept to use barcode <b>[_1]</b> anyway.
14 [% END %]
15     </div>
16   </div>
17   <div class="modal-footer">
18     <input type="submit" class="btn btn-primary" 
19       ng-click="ok()" value="[% l('Accept Barcode') %]"/>
20     <button class="btn btn-warning" 
21       ng-click="cancel()">[% l('Cancel') %]</button>
22   </div>
23 </div>
24
25