habitica/app/assets/javascripts/backbone/templates/habits/habit.jst.ejs

20 lines
562 B
Text
Raw Normal View History

<!-- Habits -->
<% if (habit_type==1) { %>
<a href="#" class="vote-up"><img src="assets/add.png" /></a>
<a href="#" class="vote-down"><img src="assets/remove.png" /></a>
<% } else { %>
<!-- Daily & Todos -->
2012-02-11 19:47:44 +00:00
<input type="checkbox" <%= done ? "class='vote-down' checked='checked'" : "class='vote-up'" %>/>
<% } %>
2012-02-11 17:00:27 +00:00
<span class="habit-text"><%= name %></span>
<div class='edit'>
<% if (notes) { %>
2012-02-09 03:11:43 +00:00
<img src='/assets/comment.png' class="comment" />
<div class='qtip'><%= notes %></div>
<% } %>
<a href="#/<%= id %>/edit">Edit</a>
</div>