{{ title }}

@if (loading) {
} @if (!loading && steps.length === 0) {

Nessun passo registrato

}
@for (s of steps; track s; let last = $last) {

{{ s.label }}

@if (s.date) { {{ s.date | date: 'dd/MM/yyyy HH:mm' }} }
{{ s.done ? 'Completato' : 'In corso' }} @if (hasDetails(s)) { }
@if (s.expanded) {
@for (f of s.fields; track f) { @if (f.isNote) {
@if (f.open) { {{ f.value }} }
} @if (f.type === 8 && f.files.length) {
{{ f.label }}
@for (file of f.files; track file) { }
} @if (!f.isNote && f.type !== 8) {
{{ f.label }} {{ f.value }}
} } @if (s.snapshot) {
@if (s.snapshot.title) {

{{ s.snapshot.title }}

} @for (f of s.snapshot.fields; track f) {
{{ f.label }} {{ f.value }}
} @for (file of s.snapshot.files; track file) { }
}
}
}