projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Make the search box load each set of results separately so that one
[rails.git]
/
app
/
views
/
geocoder
/
results.html.erb
1
<% if @results.empty? %>
2
<p class="search_results_entry"><%= t 'geocoder.results.no_results' %></p>
3
<% else %>
4
<% @results.each do |result| %>
5
<p class="search_results_entry"><%= result_to_html(result) %></p>
6
<% end %>
7
<% end %>