X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/11bd2a4ddcaf3956f4cdea97d2c4b9c4c78ff318..e9bea64bf6806be1b0a951fd684fa13314cb8b67:/app/views/trace/view.rhtml diff --git a/app/views/trace/view.rhtml b/app/views/trace/view.rhtml index 1ad563729..585342c02 100644 --- a/app/views/trace/view.rhtml +++ b/app/views/trace/view.rhtml @@ -1,6 +1,10 @@ -

<%= @title %>

+

<%= h(@title) %>

- + <% if @trace.inserted %> + + <% else %> + PENDING + <% end %> @@ -17,16 +21,16 @@ - + <% end %> - + - + @@ -49,7 +53,10 @@ <% unless @trace.public? %> <% end %> - <% if @trace.user.id == @user.id %> + <% if @trace.user == @user %> + + <% end %> + <% if @trace.user == @user %> <% end %>
<%= @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 %>)
<%= @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} %><%= link_to h(@trace.user.display_name), {:controller => 'user', :action => 'view', :display_name => @trace.user.display_name} %>
Description:<%= @trace.description %><%= h(@trace.description) %>
Tags:<%= 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 %>