Sha256: 9fe3c7f744e9d708334ee0edaed4a8c3d07cabaa67e52b4390e4fddb3de6b5f6
Contents?: true
Size: 1023 Bytes
Versions: 38
Compression:
Stored size: 1023 Bytes
Contents
<% @page_title = t('blacklight.search_history.page_title', :application_name => application_name) %> <div id="content" class="col-md-12"> <h1 class='page-heading'><%= t('blacklight.search_history.title') %></h1> <% if @searches.blank? %> <h2 class='section-heading'><%= t('blacklight.search_history.no_history') %></h2> <% else %> <%= link_to t('blacklight.search_history.clear.action_title'), blacklight.clear_search_history_path, method: :delete, data: { confirm: t('blacklight.search_history.clear.action_confirm') }, class: 'btn btn-danger float-md-right float-md-end' %> <h2 class='section-heading'><%= t('blacklight.search_history.recent') %></h2> <table class="table table-striped search-history"> <% @searches.each_with_index do |search,index| %> <tr id="document_<%= index + 1 %>"> <td class="query"><%= link_to_previous_search(search_state.reset(search.query_params).to_hash) %></td> </tr> <% end %> </table> <% end %> </div>
Version data entries
38 entries across 38 versions & 2 rubygems