Dear Henry,
Good that you solved your Problem. Would be nice at this point that You flag this as the Answer and upvote. ;-).
You can have a table with Tasks for that user. For example in my living application I put the personal page of each user with a list of pending human task (also from different processes they can access) assigned to them. You have to create taskList variable defined in this way:
../API/bpm/humanTask?p=0&c=20&f=assigned_id={{loggedUser.user_id}}
In this way You will have a list of task of that user. Now you can put this list on a table or on a repeater container. Each task in the taskList would be this JSON object:
[{"displayDescription":"Processo di Gestione Segnalazioni CS2019_0022 - Integrazione Segnalazione","executedBy":"0","rootContainerId":"23002","assigned_date":"2020-02-26 15:13:13.657","displayName":"CS2019_0022","executedBySubstitute":"0","dueDate":"","description":"","type":"USER_TASK","priority":"normal","actorId":"2106","processId":"6803669643293863931","caseId":"23002","name":"Integrazione","reached_state_date":"2020-02-26 15:13:18.317","rootCaseId":"23002","id":"480011","state":"ready","parentCaseId":"23002","last_update_date":"2020-02-26 15:13:18.317","assigned_id":"302"}]
As you can see, here In the process I have assigned a dinamic display name that help you understand better what are you dealing with. To assign dynamic display name, in Studio, in the human task General Tab, Portal, you can assign display description by script something like:
return "Process xxx " + yourBDM.yourSignificantID + " - Name of action / task that is useful"