tracks/app/views/todos/_mobile_actions.m.erb
2013-03-18 12:36:40 +01:00

13 lines
317 B
Text

<% if @not_done_todos.empty? -%>
<p><%= t('todos.no_actions.not_done') %></p>
<% else -%>
<%= render :partial => @contexts_to_show -%>
<% end -%>
<% unless @done.nil? -%>
<div id="completed_container">
<h2><%= t('todos.completed_actions') %></h2>
<ul class="c">
<%= render :partial => @done %>
</ul>
</div>
<% end %>