]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/share/t_prompt_dialog.tt2
LP#1350042 Browser client templates/scripts (phase 1)
[working/Evergreen.git] / Open-ILS / src / templates / staff / share / t_prompt_dialog.tt2
1 <!--
2   Generic confirmation dialog
3 -->
4 <div>
5   <div class="modal-header">
6     <button type="button" class="close" 
7       ng-click="cancel()" aria-hidden="true">&times;</button>
8     <h4 class="modal-title alert alert-info">{{message}}</h4> 
9   </div>
10   <div class="modal-body">
11     <div class="col-md-12">
12       <input type='text' ng-model="args.value" class="form-control" focus-me="focus"/>
13     </div>
14   </div>
15   <div class="modal-footer">
16     [% dialog_footer %]
17     <input type="submit" class="btn btn-primary" 
18       ng-click="ok()" value="[% l('OK/Continue') %]"/>
19     <button class="btn btn-warning" ng-click="cancel()">[% l('Cancel') %]</button>
20   </div>
21 </div>