X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/c24c2e481cc6d27e76274ed4e32668a4690a7788..33c0e95ebea3aeabae694ad5d9f0250dd11b56fb:/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