X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/72177a3f20d31e081372f5174b72354192e40a3b..7633657ecb93d45fef823f7707d91e1576c18a1f:/app/helpers/trace_helper.rb?ds=sidebyside diff --git a/app/helpers/trace_helper.rb b/app/helpers/trace_helper.rb index db1f8357e..fbbeb3dff 100644 --- a/app/helpers/trace_helper.rb +++ b/app/helpers/trace_helper.rb @@ -10,4 +10,12 @@ module TraceHelper image_tag trace_icon_path(trace.user, trace), options.merge(:size => 50) end + + def trace_picture(trace, options = {}) + options[:class] ||= "trace_image" + options[:alt] ||= "" + + image_tag trace_picture_path(trace.user, trace), + options.merge(:size => 250) + end end