aboutsummaryrefslogtreecommitdiff
path: root/app/views/shared_searches/index.html.erb
blob: 9a145f687dfc7c046aabeba582e3fb795934b0f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<h3><%= I18n.t('searches.shared.title') %></h3>

<% if @searches.empty? %>
    <div><span><%= I18n.t('searches.shared.none') %>.</span></div>
<% else %>
    <div id="shared-searches-list">
        <% @searches.each do |s| %>
            <div>
                <%= link_to s.name, search_shared_path(s) %>
            </div>
        <% end %>
    </div>
<% end %>