Query Tasks with Context

To hide DONE tasks:

  • in the query replace the :title line with this one:
    :title [:span {:class "hide-done"} "Agencies with TODOs for Agency Engagement"]
    
  • in file custom.css add a CSS rule like this one:
    .custom-query:has(.hide-done) .ls-block[haschild=false]:has(.done) {
      display: none;
    }