Hi, I’ve wrote a query like:
# Checklist
${query[[
from item = index.tag "task"
where
table.includes(item.itags, "project")
and not item.done
order by
item.page,
item.pos
select {
state = "[" .. item.state .. "]",
ref = item.ref,
name = item.name
}
]]}
And it shows:
… Yes, I’m not using taskItem template, because I prefer the table form than the list.
How can i render state columns as checkboxes?
