<%= l(:label_search) %>

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

<%= text_field_tag 'q', @question, :size => 60, :id => 'search-input' %> <%= javascript_tag "Field.focus('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), :name => 'submit' %>

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

<%= l(:label_result_plural) %> (<%= @results_by_type.values.sum %>)

<% @results.each do |e| %>
<%= content_tag('span', h(e.project), :class => 'project') unless @project == e.project %> <%= link_to highlight_tokens(truncate(h(e.event_title), :length => 255), @tokens), e.event_url %>
<%= highlight_tokens(h(e.event_description), @tokens) %> <%= format_time(e.event_datetime) %>
<% end %>
<% end %>

<% if @pagination_previous_date %> <%= link_to_content_update("\xc2\xab " + l(:label_previous), params.merge(:previous => 1, :offset => @pagination_previous_date.strftime("%Y%m%d%H%M%S"))) %>  <% end %> <% if @pagination_next_date %> <%= link_to_content_update(l(:label_next) + " \xc2\xbb", params.merge(:previous => nil, :offset => @pagination_next_date.strftime("%Y%m%d%H%M%S"))) %> <% end %>

<% html_title(l(:label_search)) -%>