Merge branch 'pull/5030'
This commit is contained in:
commit
869d86a31f
2 changed files with 9 additions and 1 deletions
|
@ -2,4 +2,12 @@ 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
|
||||
end
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<td>
|
||||
<% if Settings.status != "gpx_offline" %>
|
||||
<% if trace.inserted %>
|
||||
<%= link_to image_tag(trace_icon_path(trace.user, trace), :alt => "", :class => "trace_image"),
|
||||
<%= link_to trace_icon(trace),
|
||||
show_trace_path(trace.user, trace),
|
||||
:class => "d-inline-block" %>
|
||||
<% else %>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue