2007-03-30 04:36:52 +00:00
|
|
|
<div id="display_box_projects">
|
2011-01-16 18:14:07 +01:00
|
|
|
<p><%= t('todos.completed_today', :count => @due_tickles.nil? ? 0 : @due_tickles.length) %></p>
|
2007-03-30 04:36:52 +00:00
|
|
|
<div class="container">
|
2011-01-16 18:14:07 +01:00
|
|
|
<h2><%= t('todos.completed_last_day') %></h2>
|
2007-04-18 06:45:09 +00:00
|
|
|
<table class="next_actions" border="0">
|
2007-03-30 04:36:52 +00:00
|
|
|
<%= render :partial => "done", :collection => @done_today %>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="container">
|
2011-01-16 18:14:07 +01:00
|
|
|
<h2><%= t('todos.completed_last_x_days', :count => 7) %></h2>
|
2007-04-18 06:45:09 +00:00
|
|
|
<table class="next_actions" border="0">
|
2007-03-30 04:36:52 +00:00
|
|
|
<%= render :partial => "done", :collection => @done_this_week %>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="container">
|
2011-01-16 18:14:07 +01:00
|
|
|
<h2><%= t('todos.completed_last_x_days', :count => 28) %></h2>
|
2007-04-18 06:45:09 +00:00
|
|
|
<table class="next_actions" border="0">
|
2007-03-30 04:36:52 +00:00
|
|
|
<%= render :partial => "done", :collection => @done_this_month %>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
|
2011-01-16 18:14:07 +01:00
|
|
|
<p><%= t('todos.older_completed_items') %>: <%= link_to( t('todos.older_than_days', :count => 31), done_archive_path ) %></p>
|
2007-03-30 04:36:52 +00:00
|
|
|
</div><!-- End of display_box -->
|