<% paginate_options = { class: 'pagination pagination-small', previous_label: '« '+ t('common.previous'), next_label: t('common.next')+' »', inner_window: 2, renderer: BootstrapPagination::Rails } %>
<%= will_paginate @done, paginate_options %>

<%= t('todos.all_completed') %>

<% if @done.empty? -%>

<%= t('todos.no_completed_actions') %>

<% else -%> <%= render :partial => "todos/todo", :collection => @done, :locals => { :parent_container_type => "completed", :suppress_context => false, :suppress_project => false } %> <% end -%>