aboutsummaryrefslogtreecommitdiff
path: root/app/views/searches/_search.html.erb
blob: c32d73a2bbc66465a6862ac9b2819e7185841e09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div id="items">
  <% els = items.values.flatten %>
  <% if els.empty? %>
    <% if current_user.last_search_id.nil? && action_name != "search" %>
      <p><%= I18n.t('things.none') %> <%= link_to I18n.t('license.here'), new_thing_path %>.</p>
    <% else %>
      <p><%= I18n.t('searches.none') %>.</p>
    <% end %>
  <% else %>
    <% els.each do |item| %>
      <%= render item %>
    <% end %>
  <% end %>
</div>