Catch render errors and display 'Couldn't find anything' instead of stacktrace
This commit is contained in:
parent
f96ed67cf0
commit
84cf537412
@ -1,20 +1,24 @@
|
||||
<h1>Results for "<%= params[:search_term] %>"</h1>
|
||||
|
||||
<ul class="courses-list">
|
||||
<% @courses.each_with_index do |course| %>
|
||||
<li class="course">
|
||||
<%= link_to crawlers_courses_crawler_show_detail_url(:title => course['title'], :detail_url => course['detail_url']) do %>
|
||||
<span class="list-link">
|
||||
<span class="course-title">
|
||||
<%= course['title'] %>
|
||||
<% if @courses %>
|
||||
<% @courses.each_with_index do |course| %>
|
||||
<li class="course">
|
||||
<%= link_to crawlers_courses_crawler_show_detail_url(:title => course['title'], :detail_url => course['detail_url']) do %>
|
||||
<span class="list-link">
|
||||
<span class="course-title">
|
||||
<%= course['title'] %>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
<% end %>
|
||||
<span class="add-to-fav">
|
||||
<% end %>
|
||||
<span class="add-to-fav">
|
||||
<%= link_to crawlers_courses_crawler_add_to_fav_url(:title => course['title'], :detail_url => course['detail_url']) do %>
|
||||
<%= show_svg('favorite-24px.svg') %>
|
||||
<% end %>
|
||||
</span>
|
||||
</li>
|
||||
</li>
|
||||
<% end %>
|
||||
<% else %>
|
||||
Could not find anything... Please try again.
|
||||
<% end %>
|
||||
</ul>
|
||||
|
||||
@ -1,20 +1,24 @@
|
||||
<h1>Results for "<%= params[:search_term] %>"</h1>
|
||||
|
||||
<ul class="projects-list">
|
||||
<% @projects.each_with_index do |project| %>
|
||||
<li class="project">
|
||||
<%= link_to crawlers_projects_crawler_show_detail_url(:id => project['id'], :title => project['title']) do %>
|
||||
<% if @projects %>
|
||||
<% @projects.each_with_index do |project| %>
|
||||
<li class="project">
|
||||
<%= link_to crawlers_projects_crawler_show_detail_url(:id => project['id'], :title => project['title']) do %>
|
||||
<span class="list-link">
|
||||
<span class="project-title">
|
||||
<%= project['title'] %>
|
||||
</span>
|
||||
</span>
|
||||
<% end %>
|
||||
<span class="add-to-fav">
|
||||
<% end %>
|
||||
<span class="add-to-fav">
|
||||
<%= link_to crawlers_projects_crawler_add_to_fav_url(:id => project['id'], :title => project['title']) do %>
|
||||
<%= show_svg('favorite-24px.svg') %>
|
||||
<% end %>
|
||||
</span>
|
||||
</li>
|
||||
</li>
|
||||
<% end %>
|
||||
<% else %>
|
||||
Could not find anything... Please try again.
|
||||
<% end %>
|
||||
</ul>
|
||||
|
||||
@ -1,20 +1,24 @@
|
||||
<h1>Results for "<%= params[:search_term] %>"</h1>
|
||||
|
||||
<ul class="theses-list">
|
||||
<% @theses.each_with_index do |thesis| %>
|
||||
<li class="thesis">
|
||||
<%= link_to crawlers_theses_crawler_show_detail_url(:id => thesis['id'], :title => thesis['title']) do %>
|
||||
<% if @theses %>
|
||||
<% @theses.each_with_index do |thesis| %>
|
||||
<li class="thesis">
|
||||
<%= link_to crawlers_theses_crawler_show_detail_url(:id => thesis['id'], :title => thesis['title']) do %>
|
||||
<span class="list-link">
|
||||
<span class="thesis-title">
|
||||
<%= thesis['title'] %>
|
||||
</span>
|
||||
</span>
|
||||
<% end %>
|
||||
<span class="add-to-fav">
|
||||
<% end %>
|
||||
<span class="add-to-fav">
|
||||
<%= link_to crawlers_theses_crawler_add_to_fav_url(:id => thesis['id'], :title => thesis['title']) do %>
|
||||
<%= show_svg('favorite-24px.svg') %>
|
||||
<% end %>
|
||||
</span>
|
||||
</li>
|
||||
</li>
|
||||
<% end %>
|
||||
<% else %>
|
||||
Could not find anything... Please try again.
|
||||
<% end %>
|
||||
</ul>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user