<% title "Listing Bounces for #{@mailing.try(:subject)}" %> <%= form_tag mail_manager.bounces_path, :id => 'search_form', :method => 'GET' do %> Mailing: <%= select_tag "mailing_id", options_for_select(@mailings.collect{|mailing| ["#{mailing.subject} (#{l mailing.status_changed_at}) (#{mailing.bounce_count})",mailing.id.to_s]},params[:mailing_id].to_i), :include_blank => true, :onChange => "$('#search_form').submit()" %>
Status:<%= select_tag "bounce[status]", options_for_select([['Needs Attention','needs_manual_intervention'],['Resolved','resolved']],params[:bounce][:status]), :include_blank => true, :onChange => "$('#search_form').submit()" %> <% end %> <% if @bounces.length == 0 %>

No bounces found for the Mailing with given status.

<% else %>

<%= will_paginate @bounces %>

<% for bounce in @bounces %> <% end %>
Contact Status changed at Comments  
<%=h bounce.contact_full_name %> <%=h bounce.contact_email_address %> <%=l bounce.status_changed_at rescue nil %> <%=h bounce.comments %> <%= link_to "View", bounce, :class => 'button' %>

<%= will_paginate @bounces %>

<% end %>