Task lists WIP

This commit is contained in:
John Livingston 2024-04-30 19:27:27 +02:00
parent 22561b4daa
commit b308d82f16
No known key found for this signature in database
GPG Key ID: B17B5640CE66CDBC

View File

@ -1,8 +1,17 @@
import { html } from 'lit'
export default function tplMucTask (task) {
const done = task.get('done')
return html`
<div class="">
Task: ${task.get('name')}
<input
type="checkbox"
class="form-check-input"
.checked=${done === true}
@click=${(_ev) => {
task.save('done', !done)
}}
/>
${task.get('name')}
</div>`
}