Adjacent routes — click a node to open it.taskflow
flowchart TD
A["Start: owner opens lead detail"] --> B["/owner/leads//"]
B --> C["Review lead data"]
C --> D{"Qualified?"}
D -->|No| E["Set status: declined"]
E --> F["End: lead closed"]
D -->|Yes| G["Set status: qualified"]
G --> H["Route to contract generation"]
H --> I["/owner/contracts/generate/"]
I --> J["End: contract workflow started"]
click B "https://mickael-umt.com/owner/leads/1/" "Open Lead"
click I "https://mickael-umt.com/owner/contracts/generate/" "Open Contract Gen"
click J "https://mickael-umt.com/owner/contracts/generate/" "Open Contract Gen"