<%= 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' %> <%= project_select_tag %> <%= hidden_field_tag 'all_words', '', :id => nil %> <%= hidden_field_tag 'titles_only', '', :id => nil %>

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

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

<%= submit_tag l(:button_submit) %>

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

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

<% @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 %>