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