Howto hide tasks from overview

Hi,

Im using a widget to show all upcoming tasks.

´´´
---
description: Adds open tasks to pages
tags: template
hooks.bottom.where: 'true'
---

# Tasks | [[Journal/Pat/Tasks|Tasks overview]] | #upnext
 
```query
 task where done = false render 
 [[Library/Core/Query/Task]]

Now to exclude Tasks from a page (vacation list) I’m searching an option to hide it.

Idea in querry, if on page is a tag #hidetasks than, thos tasks should be hidden.

Any hint how to do this?

br

My Idea:

task where done = false render and tags != #hidetasks

gotta do
itags != "hidetasks"

1 Like
task where itags != "hidetasks" render [[Library/Core/Query/Task]]