LP2000482 Angular 15 and Bootstrap 5 upgrade
[evergreen-equinox.git] / Open-ILS / src / eg2 / src / app / staff / cat / bib-by-ident.component.html
1
2 <div class="row form-validated mt-5">
3   <div class="col-lg-6 form-inline">
4     <div class="input-group">
5         <span class="input-group-text" id="bib-ident-label">
6           <ng-container *ngIf="identType === 'id'" i18n>Record ID:</ng-container>
7           <ng-container *ngIf="identType === 'tcn'" i18n>Record TCN:</ng-container>
8         </span>
9       <input id="bib-ident-value" type="text" required 
10         (keyup.enter)="search()" [(ngModel)]="identValue"
11         class="form-control" aria-describedby="bib-ident-label"/>
12     </div>
13     <button class="btn btn-outline-dark" (click)="search()" i18n>Submit</button>
14   </div>
15 </div>
16
17 <div class="row mt-3">
18   <div class="col-lg-6">
19     <div class="alert alert-warning" *ngIf="notFound && !multiRecordsFound" i18n>
20       Record not found: {{identValue}}
21     </div>
22     <div class="alert alert-warning" *ngIf="multiRecordsFound" i18n>
23       More than one Bib Record found with TCN: {{identValue}}
24     </div>
25   </div>
26 </div>