@if(anomaly()) {
{{anomaly()?.description}}
@for (target of anomaly()?.solution; track $index) {
{{ target.name }}
} }
@if(tours().length > 0) { @for (tour of tours(); track $index) {
@for (item of tour | keyvalue; track $index) {
{{item.key}}: {{item.value}}
}
} } @if(plannedTimes().length > 0) { @for (plannedTime of plannedTimes(); track $index) {
@for (item of plannedTime | keyvalue; track $index) {
{{item.key}}: {{item.value}}
}
} } @if(workTimes().length > 0) { @for (workTime of workTimes(); track $index) {
@for (item of workTime | keyvalue; track $index) {
{{item.key}}: {{item.value}}
}
} } @if(attendanceRegistrations().length > 0) {
@for (attendanceRegistration of attendanceRegistrations(); track $index) {
@for (item of attendanceRegistration | keyvalue; track $index) {
{{item.key}}: {{item.value}}
}
}
} @if(employees().length > 0) { @for (employee of employees(); track $index) {
@for (item of employee | keyvalue; track $index) {
{{item.key}}: {{item.value}}
}
} }