I built a project management app. When I create a new project it requires 3 tables (objects). Which are:
- Customer
- User
- Project.
The manual workflow is:
- goto customers page
- Create a customer record in the customer table
- Goto user page
- Create a user record in the user table
- goto projects page
- Create the project record in the projects table with fields that allow me to select the newly created customer and the newly created user
My first attempt at simplification was to put all those table onto a single admin page to reduce traveling to different pages. Nice but still feels clunky.
Ideally I would have a single data entry workflow that allows me to create the project, and while doing so, also select a customer or create the customer (if needed) and the same for choosing the linked users.
Any ideas?