]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/circ/share/t_hold_notification_dialog.tt2
LP#1705524: Use the new grid configuration for date format in the bills list
[working/Evergreen.git] / Open-ILS / src / templates / staff / circ / share / t_hold_notification_dialog.tt2
1 <form ng-submit="ok(args)" role="form">
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('Create Record of Hold Notification') %]</h4>
6     </div>
7     <div class="modal-body">
8       <div class="form-group row">
9         <div class="col-md-3">
10           <label for="note-method">[% l('Notification Method') %]</label>
11         </div>
12         <div class="col-md-9">
13           <input type="text" class="form-control" focus-me='focusNote' required
14             id="note-method" ng-model="args.method" placeholder="[% l('Notification Method...') %]"/>
15         </div>
16       </div>
17       <div class="form-group row">
18         <div class="col-md-3">
19           <label for="note-note">[% l('Note') %]</label>
20         </div>
21         <div class="col-md-9">
22           <textarea class="form-control" required
23             id="note-note" ng-model="args.note" placeholder="[% l('Note') %]">
24           </textarea>
25         </div>
26       </div>
27     </div>
28     <div class="modal-footer">
29       <input type="submit" class="btn btn-primary" value="[% l('OK') %]"/>
30       <button class="btn btn-warning" ng-click="cancel($event)">[% l('Cancel') %]</button>
31     </div>
32   </div> <!-- modal-content -->
33 </form>