{#if error}
{error}
{/if} {#if loading && workflows.length === 0}Loading…
{:else if workflows.length === 0}
No workflows in this app yet. Author one with a [[workflows]]
block in your manifest and pic apply.
| Workflow | Steps | Enabled | |
|---|---|---|---|
{w.name} |
{w.steps} | {w.enabled ? 'yes' : 'no'} |
{selectedWf}No runs yet.
{:else}| Run | Status | Depth | Created | |
|---|---|---|---|---|
{short(r.id)} |
{r.status} | {r.workflow_depth} | {r.created_at} |
{short(detail.run.id)}
{detail.run.status}
{detail.run.error}
{/if}| Step | Status | Attempt | Depends on | Error |
|---|---|---|---|---|
{s.name} |
{s.status} | {s.attempt}/{s.max_attempts} | {s.depends_on.join(', ')} | {s.error ?? ''} |