<%= t('notification.other') %>

<%= link_to(t('notification.read_all'), update_all_notifications_path(:page => params[:page]), :confirm => t('sure'),:method => :put, :remote => true) %>
<% @notifications.each do |notification|%> <% @notification = notification %> <% read_class = notification.is_unread?(@actor) ? 'unread' : '' %> <%= render :partial => 'notification', :object => notification, :locals => {:read_class => read_class} %> <% end %> <%= paginate @notifications %>