2008-04-19 19:15:07 +00:00
|
|
|
<% if @not_done_todos.empty? -%>
|
2011-01-16 18:14:07 +01:00
|
|
|
<p><%= t('todos.no_incomplete_actions') %></p>
|
2007-04-02 04:18:19 +00:00
|
|
|
<% else -%>
|
2008-05-28 09:29:46 +00:00
|
|
|
<%= render :partial => "contexts/mobile_context", :collection => @contexts_to_show -%>
|
2011-07-18 17:37:11 -05:00
|
|
|
<% end -%>
|
|
|
|
|
<% unless @done.nil? -%>
|
2011-12-20 10:35:21 -06:00
|
|
|
<div id="completed_container">
|
2011-07-18 17:37:11 -05:00
|
|
|
<h2><%= t('todos.completed_actions') %></h2>
|
2011-11-22 09:42:21 -06:00
|
|
|
<ul class="c">
|
2011-07-18 17:37:11 -05:00
|
|
|
<%= render :partial => "todos/mobile_todo", :collection => @done %>
|
2011-11-22 09:42:21 -06:00
|
|
|
</ul>
|
2011-12-20 10:35:21 -06:00
|
|
|
</div>
|
2011-07-18 17:37:11 -05:00
|
|
|
<% end %>
|