To achieve your goal to list task information like that (without the possibilty to complete tasks), you can do something like the following:
```dataview
TABLE file.folder as "Folder", task.text as Task, task.status as Status, choice(task.status = "x", "🟢", "🔴") as Completed
FROM "myproject"
FLATTEN file.tasks as task
```
Play around with that and see if you can’t get an output you like.