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

25 lines
728 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>
<%= name %>
<% } else { %>
<!-- Daily & Todos -->
<% if (done) { %>
<input class="vote-down" type="checkbox" checked="checked"/>
<strike><%= name %></strike>
<% } else { %>
<input class="vote-up" type="checkbox"/>
<%= name %>
<% } %>
<% } %>
<div class='edit'>
<% if (notes) { %>
2012-02-09 03:11:43 +00:00
<!-- TODO how to make this assets-aware? image_tag('comment.png', :class=>'comment') -->
<img src='/assets/comment.png' class="comment" />
<div class='qtip'><%= notes %></div>
<% } %>
<a href="#/<%= id %>/edit">Edit</a>
</div>