X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/dd57a8d248a0c294f056baa970dc893e687418c6..3b6d2c5336eac35912909c9102c77bf6472901e6:/app/views/trace/view.rhtml diff --git a/app/views/trace/view.rhtml b/app/views/trace/view.rhtml index b5f3bf65d..585342c02 100644 --- a/app/views/trace/view.rhtml +++ b/app/views/trace/view.rhtml @@ -1,19 +1,63 @@ -
filename: | <%= @trace.name %> |
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 %>) |
owner: | <%= link_to @trace.user.display_name, {:controller => 'trace', :action => 'view', :display_name => @trace.user.display_name, :id => nil} %> |
description: | <%= @trace.description %> |
tags: | + |
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 h(@trace.user.display_name), {:controller => 'user', :action => 'view', :display_name => @trace.user.display_name} %> | +
Description: | +<%= h(@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 %> - |
<%= button_to 'Make this track public permanently', :controller => 'trace', :action => 'make_public', :id => @trace.id %> | + <% end %> + <% if @trace.user == @user %> +<%= button_to 'Edit this track', :controller => 'trace', :action => 'edit', :id => @trace.id %> | + <% end %> + <% if @trace.user == @user %> +<%= button_to 'Delete this track', :controller => 'trace', :action => 'delete', :id => @trace.id %> | + <% end %> +