X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/997aaf1f1ac3697476af7f33b2dbdc90d62c3744..e5018d8f08c98d00356a13d4e107f718191c331c:/app/views/trace/_trace.rhtml?ds=sidebyside
diff --git a/app/views/trace/_trace.rhtml b/app/views/trace/_trace.rhtml
index 26f767d81..91862444a 100644
--- a/app/views/trace/_trace.rhtml
+++ b/app/views/trace/_trace.rhtml
@@ -14,8 +14,8 @@
<% end %>
... <%= time_ago_in_words( trace.timestamp ) %> ago
<%= link_to 'more', {:controller => 'trace', :action => 'view', :display_name => trace.user.display_name, :id => trace.id}, {:title => 'View Trace Details'} %> /
- <%= link_to 'map', {:controller => 'site', :action => 'index, :lat => trace.latitude, :lon => trace.longitude, :zoom => 14}, {:title => 'View Map'} %> /
- <%= link_to 'edit', {:controller => 'site', :action => 'edit', :lat => trace.latitude, :lon => trace.longitude, :zoom => 14}, {:title => 'Edit Map'} %>
+ <%= 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) %>
@@ -23,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 %>