]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/cat/vandelay/queued-record.component.html
LP#1842763: Vandelay: disable grid row select on queued record matches
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / cat / vandelay / queued-record.component.html
1
2 <div class="row mb-3">
3   <div class="col-lg-2">
4     <button class="btn btn-info label-with-material-icon"
5       routerLink="/staff/cat/vandelay/queue/{{queueType}}/{{queueId}}">
6       <span class="material-icons">arrow_back</span>
7       <span i18n>Return to Queue</span>
8     </button>
9   </div>
10 </div>
11
12 <ngb-tabset #recordTabs [activeId]="recordTab" (tabChange)="onTabChange($event)">
13         <ngb-tab title="Queued Record MARC" i18n-title id="marc">
14                 <ng-template ngbTabContent>
15       <eg-marc-html [recordId]="recordId" [recordType]="'vandelay-'+queueType">
16       </eg-marc-html>
17                 </ng-template>
18         </ngb-tab>
19         <ngb-tab title="Record Matches" i18n-title id="matches">
20                 <ng-template ngbTabContent>
21       <eg-queued-record-matches [recordId]="recordId" [queueType]="queueType">
22       </eg-queued-record-matches>
23                 </ng-template>
24         </ngb-tab>
25         <ngb-tab title="Import Items" i18n-title id="items">
26                 <ng-template ngbTabContent>
27       <eg-queued-record-items [recordId]="recordId">
28       </eg-queued-record-items>
29                 </ng-template>
30         </ngb-tab>
31 </ngb-tabset>