X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/93dab8a1272f8c807da841c0a55b37f74b65b8c3..220ad0a6b6a8154692a404c443402252dd361168:/app/views/trace/view.rhtml diff --git a/app/views/trace/view.rhtml b/app/views/trace/view.rhtml index 28ef095ab..8ae7c8327 100644 --- a/app/views/trace/view.rhtml +++ b/app/views/trace/view.rhtml @@ -1,15 +1,26 @@ -trace <%= @trace.name %> -
-icon -
- -picture - -
-time <%= @trace.timestamp %> -
-dec <%= @trace.description %> - +

Viewing trace <%= @trace.name %>

+ + + + + + + + + +
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, :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: + <% 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 %>