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

<%= @title %>

+ + + + + + + + + + + <% if @trace.inserted? %> + + + + + + + + <% end %> + + + + + + + + + + + + +
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 => 14 %> / <%=link_to 'edit', :controller => 'site', :action => 'edit', :lat => @trace.latitude, :lon => @trace.longitude, :gpx=> @trace.id, :zoom => 14 %>)
Owner:<%= link_to @trace.user.display_name, {:controller => 'user', :action => 'view', :display_name => @trace.user.display_name} %>
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 %> + <% else %> + None + <% end %> +
+

+ + + <% unless @trace.public? %> + + <% end %> + <% if @trace.user.id == @user.id %> + + <% end %> + <% if @trace.user.id == @user.id %> + + <% end %> + +
<%= button_to 'Make this track public permanently', :controller => 'trace', :action => 'make_public', :id => @trace.id %><%= button_to 'Edit this track', :controller => 'trace', :action => 'edit', :id => @trace.id %><%= button_to 'Delete this track', :controller => 'trace', :action => 'delete', :id => @trace.id %>