@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) {
}
@for (b of buttons; track b) {
{{ buttonLabel(b) }}
}
@if (buttons.length === 0) {
Questo passo non prevede azioni eseguibili dall’app.
}
}
@if (!loading && !activity) {
}