<%= t('todos.calendar.due_today') %>
>
<%= t('todos.calendar.no_actions_due_today') %>
<%= render :partial => "todos/todo", :collection => @due_today %>
<%= t('todos.calendar.due_this_week') %>
>
<%= t('todos.no_actions_due_this_week') %>
<%= render :partial => "todos/todo", :collection => @due_this_week %>
<%= t('todos.calendar.due_next_week') %>
>
<%= t('todos.calendar.no_actions_due_next_week') %>
<%= render :partial => "todos/todo", :collection => @due_next_week %>
<%= t('todos.calendar.due_this_month', :month => l(Time.zone.now, :format => "%B")) %>
>
<%= t('todos.calendar.no_actions_due_this_month') %>
<%= render :partial => "todos/todo", :collection => @due_this_month %>
<%= t('todos.calendar.due_next_month_and_later', :month => l(Time.zone.now+1.month, :format => "%B")) %>
>
<%= t('todos.calendar.no_actions_due_after_this_month') %>
<%= render :partial => "todos/todo", :collection => @due_after_this_month %>