]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/share/holds/notify-dialog.component.html
LP1910145 Angular Hold Detail Notes & Notifications
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / share / holds / notify-dialog.component.html
1 <ng-template #dialogContent>
2   <div class="modal-header bg-info">
3     <h4 class="modal-title">Create Record of Hold Notification</h4>
4     <button type="button" class="close"
5       i18n-aria-label aria-label="Close" (click)="close()">
6       <span aria-hidden="true">&times;</span>
7     </button>
8   </div>
9   <div class="modal-body form-validated">
10     <div class="form-group">
11       <label for="method-input" i18n>Notification Method</label>
12       <input type="text" class="form-control" id="method-input" required [(ngModel)]="method"/>
13     </div>
14     <div class="form-group">
15       <label for="note-input" i18n>Note</label>
16       <textarea class="form-control" id="note-input" required [(ngModel)]="note">
17       </textarea>
18     </div>
19     <div class="w-100">
20       <button class="btn btn-success ml-auto" (click)="createNotify()"
21         [disabled]="!method || !note" i18n>Create</button>
22       <button class="btn btn-warning ml-2" (click)="close()" i18n>Cancel</button>
23     </div>
24   </div>
25 </ng-template>