habitica/app/assets/javascripts/backbone/templates/habits/habit.jst.ejs
2012-02-08 22:11:43 -05:00

24 lines
643 B
Text

<!-- Habits -->
<% if (habit_type==1) { %>
<a href="#" class="vote-up">+</a>
<a href="#" class="vote-down">-</a>
<%= name %>
<% } else { %>
<!-- Daily & Todos -->
<% if (done) { %>
<a href="#" class="vote-down">[X]</a>
<strike><%= name %></strike>
<% } else { %>
<a href="#" class="vote-up">[ ]</a>
<%= name %>
<% } %>
<% } %>
<div class='edit'>
<% if (notes) { %>
<!-- 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>