X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/56500280d4dfa645ef7cc8699a7802912893b6fc..72177a3f20d31e081372f5174b72354192e40a3b:/app/helpers/trace_helper.rb diff --git a/app/helpers/trace_helper.rb b/app/helpers/trace_helper.rb index a0c3f56c9..db1f8357e 100644 --- a/app/helpers/trace_helper.rb +++ b/app/helpers/trace_helper.rb @@ -1,9 +1,13 @@ module TraceHelper def link_to_tag(tag) - if @action == "mine" - return link_to(tag, :tag => tag) - else - return link_to(tag, :tag => tag, :display_name => @display_name) - end + link_to(tag, :tag => tag, :page => nil) + end + + def trace_icon(trace, options = {}) + options[:class] ||= "trace_image" + options[:alt] ||= "" + + image_tag trace_icon_path(trace.user, trace), + options.merge(:size => 50) end end