You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi/ClientApp/src/app/requests-list/components/requests-list.component.html

23 lines
805 B

<div class="small-middle-container">
<mat-tab-group>
<div class="buttons">
<mat-tab label="{{ 'NavigationBar.Filter.Movies' | translate }}">
<ng-template matTabContent>
<movies-grid (onOpenOptions)="onOpenOptions($event)"></movies-grid>
</ng-template>
</mat-tab>
<mat-tab label="{{ 'NavigationBar.Filter.TvShows' | translate }}">
<ng-template matTabContent>
<tv-grid (onOpenOptions)="onOpenOptions($event)"></tv-grid>
</ng-template>
</mat-tab>
<mat-tab *ngIf="musicEnabled$ | async" label="{{ 'NavigationBar.Filter.Music' | translate }}">
<ng-template matTabContent>
<albums-grid (onOpenOptions)="onOpenOptions($event)"></albums-grid>
</ng-template>
</mat-tab>
</div>
</mat-tab-group>
</div>