X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3d7eb387a7c3573f1a1d17df00adcaa1fb9b9fa5..677d129a2e3b6c8c67549f7e80b2d4d72a96a4f7:/app/helpers/geocoder_helper.rb diff --git a/app/helpers/geocoder_helper.rb b/app/helpers/geocoder_helper.rb index 8f662bde7..c74cba28e 100644 --- a/app/helpers/geocoder_helper.rb +++ b/app/helpers/geocoder_helper.rb @@ -18,6 +18,12 @@ module GeocoderHelper html << link_to(result[:name], url, html_options) if result[:name] 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