pastebinner/app/views/search/_form.html.erb

29 lines
No EOL
797 B
Text

<%= form_for :term, url: search_path, method: :get do |form| %>
<p>
<%= text_field_tag :term, params[:term] %>
<%= submit_tag "Search", name: nil %>
</p>
<% end %>
<h1>Search Results</h1>
<% if @pastes %>
<ul class="search_results">
<% @pastes.each do |paste| %>
<li>
<h3>
<%= link_to article.try(:highlight).try(:title) ?
paste.highlight.title[0].html_safe : paste.title,
controller: "pastes", action: "show", id: paste._id %>
</h3>
<% if paste.try(:highlight).try(:text) %>
<% paste.highlight.text.each do |snippet| %>
<p><%= snippet.html_safe %>...</p>
<% end %>
<% end %>
</li>
<% end %>
</ul>
<% else %>
<p>Your search did not match any documents.</p>
<% end %>