openstreetmap-website/app/views/geocoder/results.html.erb
Tom Hughes 06b2d278ea Make the search box load each set of results separately so that one
service being slow doesn't delay the response from others.
2009-07-02 16:12:38 +00:00

7 lines
239 B
Text

<% if @results.empty? %>
<p class="search_results_entry"><%= t 'geocoder.results.no_results' %></p>
<% else %>
<% @results.each do |result| %>
<p class="search_results_entry"><%= result_to_html(result) %></p>
<% end %>
<% end %>