Modify the anatomy of a task

The CHT documentation describes the components that are displayed in the tasks list:

I wonder if it is possible to change the features that are displayed. In our particular case, we would like to display the patient’s weight, that has been entered in the form that triggered the task, right under his name.

Maybe there are better solutions but I use to do something like:

contactLabel: (contact, report) => getField(report, 'patient_name') + '(' +
    getField(report, 'patient_weight') + 'Kg)',
1 Like