zulip/static/templates/widgets/todo_widget.hbs
majordwarf 68dcdcd28e todo_list: Add task description and index numbers.
The user can pass description along with the task name by splitting the input string with hyphen.

Eg: Task Title - Task Description
todo_list: Add index numbers to task.
2020-03-12 08:02:06 -04:00

12 lines
397 B
Handlebars

<div class="todo-widget">
<h4>Task list</h4>
<div class="add-task-bar">
<input type="text" class="add-task" placeholder="{{t 'New task'}}" />
<input type="text" class="add-desc" placeholder="{{t 'Description'}}" />
<button class="add-task">{{t "Add task" }}</button>
<div class="widget-error"></div>
</div>
<ul class="todo-widget">
</ul>
</div>