Kanban integration with tasks

[UPDATE] - New Features

  • :sparkles: LiveFiltering & Sorting Order for your tasks in the Kanban Board (similar to the MediaGallery)

  • :sparkles: Current TaskCount in the header

  • :sparkles: Custom Color (#FFFF00, rgba, oklch, color name, etc.) for the cards when they are in the different columns/stages

  • :sparkles: the possibility to hide certain keys/labels to be hidden in the card. this can be usefull if you have a longer text or a title as attribute

  • to config the new features use the example in the documentation or here is also the overview of all the current config options:

${KanbanBoard(
  query[[from index.tag "task"]], 
  {
    {"Column", "status"},
    {"Columns", {
      {"todo", "📝 To Do","blue"},
      {"doing", "⏳ In Progress","red"},
      {"review", "👀 Needs Review","yellow"},
      {"done", "✅ Done","green"}
    }},
    {"SortDefault", "priority"},
    {"Fields", {"title","priority", "completed"}},
    {"HideKeys", {"title"}}
  }
)}


@JmiXIII - some of these features(filter & hideKey) are dedicated for you, so you can manage larger task lists, and longer titles :wink:

1 Like