This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
<template name="Todos_item"> | |
<div class="list-item {{checkedClass todo}} {{editingClass editing}}"> | |
<label class="checkbox"> | |
<input type="checkbox" checked="{{todo.checked}}" name="checked"> | |
<span class="checkbox-custom"></span> | |
</label> | |
<input | |
type="text" | |
value="{{todo.text}}" | |
placeholder={{_ 'todos.item.taskName'}}> | |
<a class="js-delete-item delete-item" href="#"> | |
<span class="icon-trash"></span> | |
</a> | |
</div> | |
</template> |