Hello!
I am currently building an online platform, were signed in users can add Services to their profile.
I have now created a custom Form with Input elements, which stores the data inputed into a Collection. The Form is Write only, so it is possible to submit more than one Entry.
I have a Page where the Entry is displayed. So in my case logged in users can fill out the “Add new Service” Form, which is then saved into my collection and outputted onto the “my services” page. I want users to be able to offer more than one service.
Once someone has added a new Service, i want them to be able to edit or delete it later on. I made a separate Input form which is read and write, so people can Edit their input. This works fine as long as there is only one Service added. As soon as the user adds a second Service via the Write only input form, the edit form only picks up on the last Data inputted.
Here are some screenshots:
- Logged in Users can add a service via this input form
- The Service is then added to the “my services” page
3)The Edit button links to a new form, which is read and write, allowing the data to be edited. Unfortunately only the last submitted Data can be edited
Is there any way that users can add more than one Service and then Edit them individually?
Thanks for the help!