X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/6559db51dfcdc10187d3e8f845474729dbb9faa6..2e2189ecb9e60b6aefda6919a177932372339607:/app/views/trace/view.rhtml diff --git a/app/views/trace/view.rhtml b/app/views/trace/view.rhtml index 661f5866f..d907d7c88 100644 --- a/app/views/trace/view.rhtml +++ b/app/views/trace/view.rhtml @@ -1,13 +1,28 @@ -

Viewing trace <%= @trace.name %>

+

<%= @title %>

- + - + - - - + <% if @trace.inserted? %> + + + <% end %> + - +
filename:<%= @trace.name %>
filename:<%= @trace.name %> (<%= link_to 'download', :controller => 'trace', :action => 'data', :id => @trace.id %>)
uploaded at:<%= @trace.timestamp %>
points:<%= @trace.size %>
start coordinate:<%= @trace.latitude %>, <%= @trace.longitude %>
owner:<%= link_to @trace.user.display_name, {:controller => 'trace', :action => 'by_user'} %>
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, :zoom => 14 %> / <%=link_to 'edit', :controller => 'site', :action => 'edit', :lat => @trace.latitude, :lon => @trace.longitude, :zoom => 14 %>)
owner:<%= link_to @trace.user.display_name, {:controller => 'trace', :action => 'view', :display_name => @trace.user.display_name, :id => nil} %>
description:<%= @trace.description %>
tags:<%= @trace.tags.collect {|tag| tag.tag} %>
tags: + <% if @trace.tags %> + <% @trace.tags.each do |tag| %> + <%= link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } %> + <% end %> + <% 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 %>