Sha256: ee5274a593827361831c2f41d724b916a63ade5d1719b7b80121e088bac4952d

Contents?: true

Size: 1010 Bytes

Versions: 36

Compression:

Stored size: 1010 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' %>
  <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

36 entries across 36 versions & 1 rubygems

Version Path
blacklight-7.19.0 app/views/search_history/index.html.erb
blacklight-7.18.1 app/views/search_history/index.html.erb
blacklight-7.18.0 app/views/search_history/index.html.erb
blacklight-7.17.2 app/views/search_history/index.html.erb
blacklight-7.17.1 app/views/search_history/index.html.erb
blacklight-7.17.0 app/views/search_history/index.html.erb
blacklight-7.16.0 app/views/search_history/index.html.erb
blacklight-7.15.2 app/views/search_history/index.html.erb
blacklight-7.15.1 app/views/search_history/index.html.erb
blacklight-7.15.0 app/views/search_history/index.html.erb
blacklight-7.14.1 app/views/search_history/index.html.erb
blacklight-7.14.0 app/views/search_history/index.html.erb
blacklight-7.13.2 app/views/search_history/index.html.erb
blacklight-7.13.1 app/views/search_history/index.html.erb
blacklight-7.13.0 app/views/search_history/index.html.erb
blacklight-7.12.1 app/views/search_history/index.html.erb
blacklight-7.12.0 app/views/search_history/index.html.erb
blacklight-7.11.1 app/views/search_history/index.html.erb
blacklight-7.10.0 app/views/search_history/index.html.erb
blacklight-7.9.0 app/views/search_history/index.html.erb