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

<%= 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', h(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(); } }); <% end %>