X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/887f456209e1ed26016acaed51a8ffd1f6593f91..58eb17cb63a3d0b670e395e7a138d40b686f8d24:/app/helpers/geocoder_helper.rb diff --git a/app/helpers/geocoder_helper.rb b/app/helpers/geocoder_helper.rb index 70bb43846..c74cba28e 100644 --- a/app/helpers/geocoder_helper.rb +++ b/app/helpers/geocoder_helper.rb @@ -16,9 +16,14 @@ module GeocoderHelper html << result[:prefix] if result[:prefix] html << " " if result[:prefix] and result[:name] html << link_to(result[:name], url, html_options) if result[:name] - html << (" [" + link_to(t("browse.#{result[:type]}_history.view_details"), :controller => :browse, :action => result[:type], :id => result[:id]) + "]") if (result[:type] && result[:id]) html << result[:suffix] if result[:suffix] + if result[:type] and result[:id] + html << content_tag(:small, :class => ["deemphasize", "search_details"]) do + link_to(t("browse.#{result[:type]}_history.view_details"), :controller => :browse, :action => result[:type], :id => result[:id]) + end + end + return raw(html) end