Merge branch 'master' into 3112-report-bug
[arvados.git] / apps / workbench / app / views / application / 404.html.erb
1 <%
2    if (controller.andand.action_name == 'show') and params[:uuid]
3      class_name = controller.model_class.to_s.underscore
4      class_name_h = class_name.humanize(capitalize: false)
5      req_item = safe_join([class_name_h, " with UUID ",
6                            raw("<code>"), params[:uuid], raw("</code>")], "")
7      req_item_plain_text = safe_join([class_name_h, " with UUID ", params[:uuid]])
8    else
9      req_item = "page you requested"
10    end
11 %>
12
13 <h2>Not Found</h2>
14
15 <p>The <%= req_item %> was not found.
16
17 <% if class_name %>
18 Perhaps you'd like to
19 <%= link_to("browse all #{class_name_h.pluralize}", action: :index, controller: class_name.tableize) %>?
20 <% end %>
21
22 </p>
23
24 <p>
25 <br/>
26 <% error_message = "The #{req_item_plain_text} was not found." %>
27 Would you like to report this problem?
28 <%= link_to report_issue_popup_path(popup_type: 'report', current_location: request.fullpath, action_method: 'post', error_message: error_message),
29       {class: 'btn btn-primary report-issue-modal-window', 'data-toggle' =>  "modal", 'data-target' => '#report-issue-modal-window', :remote => true, return_to: request.url} do %>
30       <i class="fa fa-fw fa-support"></i> Report problem
31 <% end %>
32 </p>