dfc87795389d506e49f5489426432eb676671fa4
[evergreen-equinox.git] / Open-ILS / src / eg2 / src / app / staff / acq / lineitem / delete-lineitems-dialog.component.html
1 <ng-template #dialogContent>
2   <form class="form-validated">
3     <div class="modal-header bg-info">
4       <h3 class="modal-title" i18n>Confirm Deletion of Line Items</h3>
5       <button type="button" class="btn-close btn-close-white"
6         i18n-aria-label aria-label="Close" (click)="close()"></button>
7     </div>
8     <div class="modal-body">
9       <h4 i18n>Line Item(s) selected:
10         <span *ngFor="let id of ids; last as isLast">
11           {{id}}<span *ngIf="!isLast">,</span>
12         </span>
13       </h4>
14       <h4 i18n>Are you sure you want to delete the selected line items?</h4>
15       <h4 i18n>Please click "Apply" to delete line items or "Exit Dialog"
16                to exit without deleting line items.</h4>
17     </div>
18     <div class="modal-footer">
19       <button type="button" class="btn btn-success"
20         (click)="close(true)" i18n>Apply</button>
21       <button type="button" class="btn btn-warning"
22         (click)="close()" i18n>Exit Dialog</button>
23     </div>
24   </form>
25 </ng-template>
26