1 <% if @results.empty? %>
2 <p class="search_results_entry"><%= t 'geocoder.results.no_results' %></p>
4 <% @results.each do |result| %>
5 <p class="search_results_entry"><%= result_to_html(result) %></p>
8 <div id="search_more_<%= @more_params.hash %>">
9 <p class="search_results_entry"><%=
10 link_to_function(t('geocoder.results.more_results')) do |page|
11 page.replace_html "search_more_#{@more_params.hash}", image_tag("searching.gif", :class => "search_searching")
12 page << remote_function(:update => "search_more_#{@more_params.hash}", :url => raw(url_for(@more_params)))