Generate title based on page's tasks

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 :yellow_square: at the end of the title,
If all the tasks are complete, add a :green_square: 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

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.