Hey guys, im trying to create a page of pre-determined list of tasks that user will each need to check off as they move through the steps within my business
Each task has a check box and task name.
I’ve created the task data type that allows for check/uncheck functionality and RG that shows all tasks however im hitting a wall.
When logged in as one user and checking a box it will make this updates across all users. i need each user to have their own tasks checked individually.
Im not sure how to do this using one data type of tasks and without users having the ability to create their own tasks as its only used as a tracker so users know what the next step is within my customer journey
Any help would be greatly appreciated!
Hey Luke,
It looks like what you are trying to do is create alist of tasks
for each user
.
What I would do if I were you is to create this list of tasks for each individual user, asign it to the user and then display in the repeating group that contains the tasks the list of tasks referencing the user which should look something like this Current user tasks
Let me know if this helps
I wouldn’t do “current users tasks” that implies storing the tasks on the user
the user data is loaded on every page load so you want it to be lightweight
better to do “search for tasks for current user” since the tasks could be quite long
even better would be list of projects, page per project, then just search for tasks for user within project (ie shorter lists) and separate the done from todos