41 lines
1.2 KiB
HTML
41 lines
1.2 KiB
HTML
<header>
|
|
<h1 mat-dialog-title>{{'GlobalStatus' | translate}}</h1>
|
|
</header>
|
|
<mat-dialog-content>
|
|
<mat-tab-group (selectedTabChange)="onTabChange($event)">
|
|
<mat-tab label="OgBoot">
|
|
<app-status-tab
|
|
[loading]="loading"
|
|
[diskUsage]="ogBootDiskUsage"
|
|
[servicesStatus]="ogBootServicesStatus"
|
|
[installedOgLives]="installedOgLives"
|
|
[diskUsageChartData]="ogBootDiskUsageChartData"
|
|
[view]="view"
|
|
[colorScheme]="colorScheme"
|
|
[isDoughnut]="isDoughnut"
|
|
[showLabels]="showLabels"
|
|
[isDhcp]="isDhcp">
|
|
</app-status-tab>
|
|
</mat-tab>
|
|
|
|
<mat-tab label="Dhcp">
|
|
<app-status-tab
|
|
[loading]="loading"
|
|
[diskUsage]="dhcpDiskUsage"
|
|
[servicesStatus]="dhcpServicesStatus"
|
|
[subnets]="subnets"
|
|
[diskUsageChartData]="dhcpDiskUsageChartData"
|
|
[view]="view"
|
|
[colorScheme]="colorScheme"
|
|
[isDoughnut]="isDoughnut"
|
|
[showLabels]="showLabels"
|
|
[isDhcp]="isDhcp">
|
|
</app-status-tab>
|
|
</mat-tab>
|
|
|
|
<mat-tab label="Pxe"> Content 3 </mat-tab>
|
|
</mat-tab-group>
|
|
</mat-dialog-content>
|
|
<mat-dialog-actions class="action-container">
|
|
<button class="ordinary-button" [mat-dialog-close]="true">{{ 'closeButton' | translate }}</button>
|
|
</mat-dialog-actions> |