import { html } from 'lit' import { __ } from 'i18n' export function tplMucTask (task) { const done = task.get('done') return html`
{ task.save('done', !done) }} /> ${task.get('name')}
` } export function tplMucAddTaskForm (tasklistEl, _tasklist) { const i18nOk = __('Ok') const i18nCancel = __('Cancel') // eslint-disable-next-line no-undef const i18nTaskName = __(LOC_task_name) // eslint-disable-next-line no-undef const i18nTaskDesc = __(LOC_task_description) return html`
` }