3988: Update crunch-job, arv-run-pipeline-instance and workbench to read/write
[arvados.git] / apps / workbench / app / views / application / 404.html.erb
index fd972959560faf14ae74a061d348cddc5d1d7554..8a0482274ad0cd18fcbde0d1cb770991ac4f995f 100644 (file)
@@ -4,8 +4,10 @@
      class_name_h = class_name.humanize(capitalize: false)
      req_item = safe_join([class_name_h, " with UUID ",
                            raw("<code>"), params[:uuid], raw("</code>")], "")
+     req_item_plain_text = safe_join([class_name_h, " with UUID ", params[:uuid]])
    else
      req_item = "page you requested"
+     req_item_plain_text = "page you requested"
    end
 %>
 
@@ -20,3 +22,5 @@ Perhaps you'd like to
 
 </p>
 
+<% error_message = "The #{req_item_plain_text} was not found." %>
+<%= render :partial => "report_error", :locals => {error_message: error_message, error_type: '404'} %>