<%= l(:label_search) %>

<%= form_tag({}, :method => :get, :id => 'search-form') do %>
<%= label_tag "search-input", l(:description_search), :class => "hidden-for-sighted" %>

<%= text_field_tag 'q', @question, :size => 60, :id => 'search-input', :data => { :auto_complete => true } %> <%= project_select_tag %> <%= hidden_field_tag 'all_words', '', :id => nil %> <%= hidden_field_tag 'titles_only', '', :id => nil %>

<%= toggle_checkboxes_link('p#search-types input') %>

<% @object_types.each do |t| %> <% end %>

<%= hidden_field_tag 'options', '', :id => 'show-options' %>

<%= submit_tag l(:label_search) %>

<% end %> <% if @results %>
<%= render_results_by_type(@result_count_by_type) unless @scope.size == 1 %>

<%= l(:label_result_plural) %> (<%= @result_count %>)

<% if @result_count_by_type['issues'].to_i > 0 && @search_attachments == '0' %>

<%= link_to l(:button_apply_issues_filter), issues_filter_path(@question, projects_scope: params[:scope], all_words: @all_words, titles_only: @titles_only, open_issues: @open_issues), :class => 'icon icon-list' %>

<% end %>
<% @results.each do |e| %>
<%= content_tag('span', e.project, :class => 'project') unless @project == e.project %> <%= link_to(highlight_tokens(e.event_title.truncate(255), @tokens), e.event_url) %>
<%= highlight_tokens(e.event_description, @tokens) %> <%= format_time(e.event_datetime) %>
<% end %>
<% end %> <% if @result_pages %> <%= pagination_links_full @result_pages, @result_count, :per_page_links => false %> <% end %> <% html_title(l(:label_search)) -%> <%= javascript_tag do %> $("#search-types a").click(function(e){ e.preventDefault(); $("#search-types input[type=checkbox]").prop('checked', false); $(this).siblings("input[type=checkbox]").prop('checked', true); if ($("#search-input").val() != "") { $("#search-form").submit(); } }); $("#search-form").submit(function(){ $("#show-options").val($("#options-content").is(":visible") ? '1' : '0'); }); <% if params[:options] == '1' %> toggleFieldset($("#options-content")); <% end %> <% end %>