Adjacent routes — click a node to open it.taskflow
flowchart TD
A["Start: owner authenticates"] --> B["Land on /owner/"]
B --> C["View active profile"]
C --> D["Check owner stats"]
D --> E["Review security controls"]
E --> F{"Choose action"}
F -->|Leads| G["Navigate to /owner/leads/"]
F -->|Contracts| H["Navigate to /owner/contracts/"]
F -->|Quotes| I["Navigate to /owner/quotes/"]
F -->|Pricing| J["Navigate to /admin/billing/pricingprofile/"]
F -->|Coefficients| K["Navigate to /admin/billing/billingcoefficient/"]
F -->|Logout| L["POST to /owner/logout/"]
click B "http://localhost:8000/owner/" "Open Owner"
click G "http://localhost:8000/owner/leads/" "Open Leads"
click H "http://localhost:8000/owner/contracts/" "Open Contracts"
click I "http://localhost:8000/owner/quotes/" "Open Quotes"