LP2008918: use new default colors for modal headers
[evergreen-equinox.git] / Open-ILS / src / eg2 / src / app / staff / acq / lineitem / claim-policy-dialog.component.html
1 <ng-template #dialogContent>
2   <form class="form-validated">
3     <div class="modal-header">
4       <h3 class="modal-title" i18n>Apply Claim Policy</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>Select a claim policy:</h4>
15       <eg-combobox domId="acq-claim-policy-dialog" name="acq-claim-policy-dialog" 
16         [asyncSupportsEmptyTermClick]="true"
17         idlClass="acqclp" [(ngModel)]="claimPolicy"></eg-combobox>
18     </div>
19     <div class="modal-footer">
20       <button type="button" class="btn btn-success" [disabled]="!claimPolicy" 
21         (click)="close(claimPolicy.id)" i18n>Apply</button>
22       <button type="button" class="btn btn-warning"
23         (click)="close()" i18n>Exit Dialog</button>
24     </div>
25   </form>
26 </ng-template>
27