X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/b92e1b058421a6bf49f65f2d45060cfdf197fd1d..26f28764dc9259185122c4622ab8552c46f323db:/app/views/trace/_trace.rhtml?ds=inline
diff --git a/app/views/trace/_trace.rhtml b/app/views/trace/_trace.rhtml
index 8bd198d4e..91862444a 100644
--- a/app/views/trace/_trace.rhtml
+++ b/app/views/trace/_trace.rhtml
@@ -13,8 +13,9 @@
(<%= trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %> points)
<% end %>
... <%= time_ago_in_words( trace.timestamp ) %> ago
- <%= link_to 'more', {:controller => 'trace', :action => 'view', :display_name => trace.user.display_name, :id => trace.id} %> /
- <%= link_to 'map', {:controller => 'site', :action => 'edit', :lat => trace.latitude, :lon => trace.longitude, :zoom => 14}, {:title => 'create maps'} %>
+ <%= link_to 'more', {:controller => 'trace', :action => 'view', :display_name => trace.user.display_name, :id => trace.id}, {:title => 'View Trace Details'} %> /
+ <%= link_to_if trace.inserted?, 'map', {:controller => 'site', :action => 'index', :lat => trace.latitude, :lon => trace.longitude, :zoom => 14}, {:title => 'View Map'} %> /
+ <%= link_to_if trace.inserted?, 'edit', {:controller => 'site', :action => 'edit', :lat => trace.latitude, :lon => trace.longitude, :zoom => 14, :gpx => trace.id }, {:title => 'Edit Map'} %>
<%= escape_once(trace.description) %>
@@ -22,7 +23,7 @@
in
<% if trace.tags %>
<% trace.tags.each do |tag| %>
- <%= link_to tag.tag, :controller => 'trace', :action => @paging_action, :tag => tag.tag %>
+ <%= link_to_tag tag.tag %>
<% end %>
<% end %>