@if (loading) {
} @if (!loading && activity) {

{{ activity.label || 'Attività' }}

@if (snapshot) {
@if (snapshot.title) {

{{ snapshot.title }}

} @for (f of snapshot.fields; track f) {
{{ f.label }} {{ f.value }}
} @for (file of snapshot.files; track file) { }
} @for (p of previousSteps; track p) {
{{ p.label }}
@for (f of p.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 }}
} }
} @for (c of inputComponents; track c) {
@if (c.cm_description) {
{{ c.cm_description }}
} @for (f of visibleCampi(c); track f) {
@if (f.type === 9) {
{{ f.value }}
} @if (f.type !== 9) { @if (f.type === 3) { @for (o of f.option; track o) { {{ o.text }} } } @if (f.type === 7) { @for (o of f.option; track o) { {{ o.text }} } } @if (f.type === 8) {
@for (file of f.file; track file; let i = $index) {
{{ file.fileOrigName }}
}
} @if (f.type !== 3 && f.type !== 7 && f.type !== 8 && f.multiline) { } @if (f.type !== 3 && f.type !== 7 && f.type !== 8 && !f.multiline) { } }
}
}
@for (b of buttons; track b) { {{ buttonLabel(b) }} } @if (buttons.length === 0) {
Questo passo non prevede azioni eseguibili dall’app.
}
} @if (!loading && !activity) {

Attività non disponibile

}