Can somebody please Explain to me How i Show completed tasks in the List view.
When i set the Filter to “done = true” nothing shows up “done = false” shows all undone items.
Im using version 24.1 with postgres 16 in docker
Can somebody please Explain to me How i Show completed tasks in the List view.
When i set the Filter to “done = true” nothing shows up “done = false” shows all undone items.
Im using version 24.1 with postgres 16 in docker
Welcome!
Quoting myself from this GitHub issue:
By default, the list view has a filter set to show only done tasks (you can change that in the view settings). If you set a filter via the popup on the view, that will be combined with the filter set for the list view. So, if you set a filter
done = true
it will be combined withdone = false
from the view, which results in “show me all tasks that are done and not done at the same time” which won’t work.
Hello,
So how can we show tasks that are not yet finished, but on the bottom also show all the finished (crossed out) tasks as well? I had a Vikunja instance a while ago and managed that view for all my projects. I recently redeployed Vikunja and can’t figure out how to get this to show - List view displaying both tasks not yet done, but also finished tasks on the bottom.
Thanks !
edit: I would also like to see all done tasks (as well as yet to be done) in the Overview section.
You would need to sort by done status - currently that’s possible with the api but there’s no ui for it. And it would only work as long as you don’t have more than 50 undone tasks, because then the undone tasks will essentially push the other ones out. The default overview on the home page does that.
Sorting is on the roadmap.