Issue: Move existing container info from the create form to a dedicated index page
Description:
The current implementation loads existing container information dynamically when rendering the “create new container” form. This mixes two distinct functions: listing existing containers and creating new ones.
Recommendation:
Create a dedicated index page at /containers that:
- Lists existing containers and their details
- Provides a “New Container” button linking to
/containers/new
Benefits:
- Clearer separation of concerns between viewing and creating resources
- Faster load time for the creation form
- More intuitive user experience aligning with RESTful UI patterns
Issue: Move existing container info from the create form to a dedicated index page
Description:
The current implementation loads existing container information dynamically when rendering the “create new container” form. This mixes two distinct functions: listing existing containers and creating new ones.
Recommendation:
Create a dedicated index page at
/containersthat:/containers/newBenefits: