X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/550c4a3a45814fde5c809334c85f1ebc47659a82..ef861715d14410d75065cf22da77c72dc79ee09f:/app/helpers/trace_helper.rb diff --git a/app/helpers/trace_helper.rb b/app/helpers/trace_helper.rb index aec1146cb..fbbeb3dff 100644 --- a/app/helpers/trace_helper.rb +++ b/app/helpers/trace_helper.rb @@ -2,4 +2,20 @@ module TraceHelper def link_to_tag(tag) 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 + + 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