X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/bc49dab4a82739afdc0554ef6b23c733460cccde..8b79f7ff0fb6e950a8ba4f243caca8503ef1f93e:/app/views/trace/view.rhtml
diff --git a/app/views/trace/view.rhtml b/app/views/trace/view.rhtml
index 63b1b7e00..8ae7c8327 100644
--- a/app/views/trace/view.rhtml
+++ b/app/views/trace/view.rhtml
@@ -6,7 +6,7 @@
filename: | <%= @trace.name %> (<%= link_to 'download', :controller => 'trace', :action => 'data', :id => @trace.id %>) |
uploaded at: | <%= @trace.timestamp %> |
points: | <%= @trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %> |
- start coordinate: | <%= @trace.latitude %>, <%= @trace.longitude %> (<%=link_to 'map', :controller => 'site', :action => 'index', :lat => @trace.latitude, :lon => @trace.longitude, :zooom => 6 %>) |
+ start coordinate: | <%= @trace.latitude %>, <%= @trace.longitude %> (<%=link_to 'map', :controller => 'site', :action => 'index', :lat => @trace.latitude, :lon => @trace.longitude, :zoom => 6 %>) |
owner: | <%= link_to @trace.user.display_name, {:controller => 'trace', :action => 'view', :display_name => @trace.user.display_name, :id => nil} %> |
description: | <%= @trace.description %> |
tags: |
@@ -17,3 +17,10 @@
<% end %>
|
+
+<% unless @trace.public? %>
+
+ <%= start_form_tag :controller => 'trace', :action => 'make_public', :id => @trace.id%>
+ <%= submit_tag 'Make this track public permanently' %>
+ <%= end_form_tag %>
+<% end %>