@if (reportDetails) {
@if (reportDetails.summary == 1) {
@if (hostSummary.length > 0) {
{{ t('Hosts summary') }}
}
@if (serviceSummary.length > 0) {
{{ t('Services summary') }}
}
}
@if (reportDetails.summary == 0) {
@for (host of hostsWithServices; track $index) {
{{ host.Host.name }}
@if (host.Host._pieChartMetrics && host.Host._pieChartMetrics.length > 0) {
}
@if (host.Services.length > 0) {
{{ t('Service availability') }}
}
@for (service of host.Services; track $index) {
@if (service.Service._chartAbsolutValues) {
{{ service.Service.name }}
{{ service.Service.name }}
}
}
}
}
}