Associa Cantieri Dipendente - {{ employee.name || '' }} {{ employee.surname || '' }}
Cantieri Disponibili ({{ filteredAvailableList.length }})
@for (it of filteredAvailableList; track it.targetId) {
{{ it.targetName }}
} @if (filteredAvailableList.length === 0) {

Nessun cantiere disponibile

}
Cantieri Assegnati ({{ assignedList.length }})
@for (it of assignedList; track it.targetId) {
{{ it.targetName }}
dal {{ formatDate(it.dateStart) }} @if (it.dateEnd) { al {{ formatDate(it.dateEnd) }} } @if (!it.dateEnd) { (in corso) }
} @if (assignedList.length === 0) {

Nessun cantiere assegnato

}
Storico associazioni ({{ historical.length }})
@if (showHistory) {
@if (historical.length === 0) {
Nessuna associazione storica
} @if (historical.length > 0) {
@for (h of historical; track h) { }
CantiereDalAlStato
{{ h.targetName }} {{ formatDate(h.dateStart) }} {{ h.dateEnd ? formatDate(h.dateEnd) : '—' }}
}
}
@if (selectedItem) {

{{ selectedItem.targetName }}
Dipendente: {{ employee.name }} {{ employee.surname }}

}