<%if @exceptions.size >0 %>

Ignored Exceptions

<%@exceptions.each do |exception|%> <%end%>
Exception Class URL Occurrences Time  
<%=link_to_remote "#{h exception.exception_message}", :update => 'data_div', :url => {:controller => 'exceptions', :action => 'show', :id => exception.id, :application_name => @application_name}%> <%=h exception.exception_class%> <%=h exception.controller%>/<%=exception.method%> <%=h exception.count%> <%=h exception.wall_time.strftime("%d-%b-%Y %H:%M:%S")%> <%=link_to 'Reopen', :controller => 'exceptions', :action => 'reopen_exception', :exception_name => exception.exception_message, :app_name => @application_name %>
<%if start > 0 %> <%=link_to_remote 'Previous', :update => 'data_div', :url => {:controller => 'exceptions', :action => 'required_ignored_exceptions', :start => start-5, :app_name => @application_name}%> <%end%> <%if start + 5 < @size%> <%=link_to_remote 'Next', :update => 'data_div', :url => {:controller => 'exceptions', :action => 'required_ignored_exceptions', :start => start + 5, :app_name => @application_name}%> <%end%>
<%else%> No ignored exceptions currently for this application. <%end%>