Files
zulip/web/templates/widgets/todo_widget_tasks.hbs
Anders Kaseorg c23cd837a0 todo_widget: Replace obsolete <strike> element.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2025-09-10 09:57:56 -07:00

18 lines
616 B
Handlebars

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