<% if @status == 404 %>
<%= _("Sorry, we couldn't find that page") %>
<%= _("The page doesn't exist. Things you can try now:")%>
- <%= _("Check for mistakes if you typed or copied the address.")%>
- <%= _("Search the site to find what you were looking for.")%>
<%= form_tag({:controller => "general", :action => "search_redirect"}, {:id => "search_form"}) do %>
<%= text_field_tag 'query', params[:query], { :size => 30 } %>
<%= submit_tag _("Search") %>
<% end %>
<% else %>
<%= _("Sorry, there was a problem processing this page") %>
<%= _('You have found a bug. Please contact us to tell us about the problem', :contact_url => help_contact_path) %>
<% end %>
<%= _('Technical details') %>
<%= h(@exception_class ? @exception_class : _("Unknown")) %>
<%= h(@exception_message) %>