LP2008918: use new default colors for modal headers
[evergreen-equinox.git] / Open-ILS / src / eg2 / src / app / staff / acq / lineitem / export-attributes-dialog.component.html
1 <ng-template #dialogContent>
2   <form class="form-validated">
3     <div class="modal-header">
4       <h3 class="modal-title" i18n>Export Single Attribute List for Selected 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>Download a text file of ISBN, ISSN, or UPC
15         values for selected line item(s).
16       </h4>
17       <div class="form-group form-inline">
18         <label for="export-attr-select" class="form-label form-check-label me-1">Filter by:</label>
19         <select name="export-attr-select" id="export-attr-select"
20           [(ngModel)]="selectedAttr"
21           class="form-control">
22           <option value="isbn" i18n>ISBN</option>
23           <option value="issn" i18n>ISSN</option>
24           <option value="upc"  i18n>UPC</option>
25         </select> 
26       </div>
27     </div>
28     <div class="modal-footer">
29       <button type="button" class="btn btn-success"
30         (click)="close(selectedAttr)" i18n>Download</button>
31       <button type="button" class="btn btn-warning"
32         (click)="close()" i18n>Cancel</button>
33     </div>
34   </form>
35 </ng-template>
36