Create for each user own data

Hey everyone !
been using adalo for 2 years almost and love it.
okay lets get down the business/
Currently I am building a fitness app.
where each user will have its own program.

The problem :
As their manager I would like to change their diet/ training program weekly.
But I do not know how to create that each user will have its own page of the workout program I am giving them.

user logged in > clicks on diets button > shows him its own diet
same user > clicks on program button >shows him its own program

DIFFERENT USER
user logged in > clicks on diets button > shows him its own diet
same user > clicks on program button >shows him its own program

the problem is - how to maintain a different program\diet for each of the users.

one option was - to do a picture of the diet or the program but its not that good :frowning:

Would really appreciate the help with this project !

Hi Lili,
1- are your diets and programs on database collections?
2- are they standard or custom?
3- is there an infinite number of diets and programs or finite (and possible to put them in collections?

Now let’s say that you have a collection of diets and a collection of programs,
You’ll need to add a many to many relationship with the users collection for both of them,

On the page were you edit each user’s diet or program, add a list of “either one” add a toggle to the list and make it act on “logged in user diets-contains-current diet” (same for programs), now each time you select a user and want to change something, you just need to toggle or untoggle the elements

Now on the user’s end : add a list of diets, filtered as : logged in user - diets (same for programs)

And here you go