2007-04-30 12:52:39 +04:00
|
|
|
<h2><%= l(:label_search) %></h2>
|
|
|
|
|
|
|
|
<div class="box">
|
|
|
|
<% form_tag({}, :method => :get) do %>
|
2007-10-15 20:53:39 +04:00
|
|
|
<p><%= text_field_tag 'q', @question, :size => 60, :id => 'search-input' %>
|
2007-09-06 00:13:06 +04:00
|
|
|
<%= javascript_tag "Field.focus('search-input')" %>
|
2007-04-30 12:52:39 +04:00
|
|
|
|
2007-09-24 21:46:25 +04:00
|
|
|
<% @object_types.each do |t| %>
|
|
|
|
<label><%= check_box_tag t, 1, @scope.include?(t) %> <%= l("label_#{t.singularize}_plural")%></label>
|
2007-04-30 12:52:39 +04:00
|
|
|
<% end %>
|
|
|
|
<br />
|
2007-10-15 20:53:39 +04:00
|
|
|
<label><%= check_box_tag 'all_words', 1, @all_words %> <%= l(:label_all_words) %></label>
|
|
|
|
<label><%= check_box_tag 'titles_only', 1, @titles_only %> <%= l(:label_search_titles_only) %></label>
|
|
|
|
</p>
|
2007-04-30 12:52:39 +04:00
|
|
|
<%= submit_tag l(:button_submit), :name => 'submit' %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<% if @results %>
|
2007-09-27 21:28:22 +04:00
|
|
|
<h3><%= l(:label_result_plural) %></h3>
|
2007-04-30 12:52:39 +04:00
|
|
|
<ul>
|
|
|
|
<% @results.each do |e| %>
|
2007-09-27 21:28:22 +04:00
|
|
|
<li><p><%= link_to highlight_tokens(truncate(e.event_title, 255), @tokens), e.event_url %><br />
|
|
|
|
<%= highlight_tokens(e.event_description, @tokens) %><br />
|
|
|
|
<span class="author"><%= format_time(e.event_datetime) %></span></p></li>
|
2007-04-30 12:52:39 +04:00
|
|
|
<% end %>
|
|
|
|
</ul>
|
2007-09-06 00:13:06 +04:00
|
|
|
<% end %>
|
2007-09-27 21:28:22 +04:00
|
|
|
|
|
|
|
<p><center>
|
|
|
|
<% if @pagination_previous_date %>
|
|
|
|
<%= link_to_remote ('« ' + l(:label_previous)),
|
|
|
|
{:update => :content,
|
|
|
|
:url => params.merge(:previous => 1, :offset => @pagination_previous_date.strftime("%Y%m%d%H%M%S"))
|
|
|
|
}, :href => url_for(params.merge(:previous => 1, :offset => @pagination_previous_date.strftime("%Y%m%d%H%M%S"))) %>
|
|
|
|
<% end %>
|
|
|
|
<% if @pagination_next_date %>
|
|
|
|
<%= link_to_remote (l(:label_next) + ' »'),
|
|
|
|
{:update => :content,
|
|
|
|
:url => params.merge(:previous => nil, :offset => @pagination_next_date.strftime("%Y%m%d%H%M%S"))
|
|
|
|
}, :href => url_for(params.merge(:previous => nil, :offset => @pagination_next_date.strftime("%Y%m%d%H%M%S"))) %>
|
|
|
|
<% end %>
|
|
|
|
</center></p>
|
2007-12-07 21:42:40 +03:00
|
|
|
|
2008-01-03 01:41:53 +03:00
|
|
|
<% html_title(l(:label_search)) -%>
|