Files
zulip/web/templates/widgets/todo_widget_tasks.hbs
Anders Kaseorg 2dc2255f26 todo_widget_tasks: Fix invalid <div> inside <label>.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2025-09-10 09:57:56 -07:00

18 lines
620 B
Handlebars

{{#each all_tasks}}
<li>
<label class="checkbox">
<span class="todo-checkbox">
<input type="checkbox" class="task" data-key="{{ key }}" {{#if completed}}checked{{/if}}/>
<span class="custom-checkbox"></span>
</span>
<span class="todo-task">
{{#if completed}}
<s><strong>{{ task }}</strong>{{#if desc }}: {{ desc }}{{/if}}</s>
{{else}}
<strong>{{ task }}</strong>{{#if desc }}: {{ desc }}{{/if}}
{{/if}}
</span>
</label>
</li>
{{/each}}