2008-04-19 19:15:07 +00:00
|
|
|
<% if @not_done_todos.empty? -%>
|
2013-03-17 15:41:36 +01:00
|
|
|
<p><%= t('todos.no_actions.not_done') %></p>
|
2007-04-02 04:18:19 +00:00
|
|
|
<% else -%>
|
2012-05-12 13:37:36 +02:00
|
|
|
<%= render :partial => @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">
|
2012-05-12 13:37:36 +02:00
|
|
|
<%= render :partial => @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 %>
|