tracks/app/views/todos/_mobile_actions.m.erb

14 lines
317 B
Text
Raw Normal View History

<% 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 %>