Hello there,
i’m setting up a new project with Kirby 3 and wonder which is the correct approach to take.
Essentially there should be an admin, that has access to the Panel and can create Pages. Some Pages have a User field to select the users that are assigned to this specific page. The Blueprint will look something like this:
title: Project sections: f1: type: fields fields: assignedUser: label: Assigned User type: users text: label: Introduction Text type: text sources: label: Sources type: text s1: type: files headline: Slide 1 template: s1 layout: cards max: 1 s2: type: files headline: Slide 2 template: s2 layout: cards max: 1 [...] s12: type: files headline: Slide 12 template: s12 layout: cards max: 1
Now i want users to sign in via the frontend and be immediatly forwarded to some kind of frontend page where they can edit the Project they are assigned to.
A mockup of the frontend page could look something like this:
The biggest hurdle to wrap my head around is how it can be possible to fetch the already uploaded files with their respected templates and after an edit of the page replace the old files with the new selected ones.
I wonder wich approach would be the appropriate one for my case. Via Forms or with the Kirby API. I’m afraid to dive into one direction for the next week, just to find out it is not the right solution for the job
Kind Regards,
Dodo