Sha256: fd8f273b448d37bf6808fdfd914e7e96a4b69851b32e45bcf302e65ed4334b0a
Contents?: true
Size: 804 Bytes
Versions: 1
Compression:
Stored size: 804 Bytes
Contents
<h1><%= t('blacklight.saved_searches.title') %></h1> <%- if current_user.blank? -%> <h2><%= t('blacklight.saved_searches.need_login') %></h2> <%- elsif @searches.blank? -%> <h2><%= t('blacklight.saved_searches.no_searches') %></h2> <%- else -%> <p> <%= link_to t('blacklight.saved_searches.clear.action_title'), clear_saved_searches_path, :method => :delete, :confirm => t('blacklight.saved_searches.clear.action_confirm') %> </p> <h2><%= t('blacklight.saved_searches.list_title') %></h2> <table class="zebra"> <%- @searches.each do |search| -%> <tr> <td><%= link_to_previous_search(search.query_params) %></td> <td><%= button_to t('blacklight.saved_searches.delete'), forget_search_path(search.id) %></td> </tr> <%- end -%> </table> <%- end -%>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
blacklight-3.5.0 | app/views/saved_searches/index.html.erb |