Hi there,
I would like to add emojis to my project pages’ title based on the tasks they contain:
If there is a task with the tag #blocked, add a at the end of the title,
If all the tasks are complete, add a at the end of the title,
else add some checkbox emoji.
I already use dataview to check in projects that are blocked, with stuff like:
```dataview
LIST
WHERE file.folder = this.file.folder AND file.name != this.file.name
SORT file.name ASC
WHERE contains(file.tags, "blocked")
But I’d like to push the usability further,
Is there a solution? (maybe more than one?)
Thanks in advance