]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/share/t_alert_dialog.tt2
LP#1706124: Make include inactive patrons checkbox sticky
[working/Evergreen.git] / Open-ILS / src / templates / staff / share / t_alert_dialog.tt2
1 <!-- 
2   Generic alert dialog.
3   The only user action allowed is the 'OK' button.
4 -->
5 <div>
6   <div class="modal-header">
7     <button type="button" class="close" 
8       ng-click="ok()" aria-hidden="true">&times;</button>
9     <h4 class="modal-title alert alert-danger">[% l('Alert') %]</h4>
10   </div>
11   <div class="modal-body">{{message}}</div>
12   <div class="modal-footer">
13     <input type="submit" 
14       class="btn btn-primary" ng-click="ok()" value="[% l('OK') %]"/>
15   </div>
16 </div>