mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-05 20:12:19 +00:00
24 lines
643 B
Text
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>
|