blob: d4ee5f426973735a57e32f919ef1bbba5a23f6b4 [file] [log] [blame]
Philipp Schradercf915462022-03-16 23:42:22 -07001<!-- Hidden element for protractor to disable alerts. -->
2<form class="visually-hidden">
3 <input type="checkbox" name="block_alerts" value="1" id="block_alerts" #block_alerts>
4</form>
5
Philipp Schrader72beced2022-03-07 05:29:52 -08006<ul class="nav nav-tabs">
7 <li class="nav-item">
8 <a class="nav-link" [class.active]="tabIs('Entry')" (click)="switchTabTo('Entry')">Data Entry</a>
9 </li>
10 <li class="nav-item">
11 <a class="nav-link" [class.active]="tabIs('ImportMatchList')" (click)="switchTabTo('ImportMatchList')">Import Match List</a>
12 </li>
13</ul>
14
15<ng-container [ngSwitch]="tab">
16 <app-entry *ngSwitchCase="'Entry'"></app-entry>
17 <app-import-match-list *ngSwitchCase="'ImportMatchList'"></app-import-match-list>
18</ng-container>