X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/eec9e29c963bc20e4e968d5aefd7cc22ca1cbeba..5966acc207874f3196a43700cb9306411c77fe47:/app/views/traces/show.html.erb diff --git a/app/views/traces/show.html.erb b/app/views/traces/show.html.erb index e65245369..6df31760a 100644 --- a/app/views/traces/show.html.erb +++ b/app/views/traces/show.html.erb @@ -10,7 +10,7 @@ <% end %> <% end %> - +
@@ -22,10 +22,16 @@ <% if @trace.inserted? %> - + - + <% end %> @@ -55,10 +61,10 @@

<% if current_user && (current_user==@trace.user || current_user.administrator? || current_user.moderator?) %> -
+
<% if current_user == @trace.user %> - <%= link_to t(".edit_trace"), edit_trace_path(@trace), :class => "button" %> + <%= link_to t(".edit_trace"), edit_trace_path(@trace), :class => "btn btn-outline-primary" %> <% end %> - <%= button_to t(".delete_trace"), { :controller => "traces", :action => "destroy", :id => @trace.id }, { :method => :delete, :data => { :confirm => t(".confirm_delete") } } %> + <%= link_to t(".delete_trace"), { :controller => "traces", :action => "destroy", :id => @trace.id }, { :method => :delete, :class => "btn btn-outline-danger", :data => { :confirm => t(".confirm_delete") } } %>
<% end %>
<%= t ".filename" %> <%= @trace.name %> (<%= link_to t(".download"), trace_data_path(@trace) %>)
<%= t ".points" %><%= @trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/, '\1,') %>
<%= number_with_delimiter(@trace.size) %>
<%= t ".start_coordinates" %>
<%= @trace.latitude %>; <%= @trace.longitude %>
(<%= link_to t(".map"), :controller => "site", :action => "index", :mlat => @trace.latitude, :mlon => @trace.longitude, :anchor => "map=14/#{@trace.latitude}/#{@trace.longitude}" %> / <%= link_to t(".edit"), :controller => "site", :action => "edit", :gpx => @trace.id, :anchor => "map=14/#{@trace.latitude}/#{@trace.longitude}" %>)
+
+ <%= t ".coordinates_html", + :latitude => tag.span(number_with_delimiter(@trace.latitude), :class => "latitude"), + :longitude => tag.span(number_with_delimiter(@trace.longitude), :class => "longitude") %> +
+ (<%= link_to t(".map"), :controller => "site", :action => "index", :mlat => @trace.latitude, :mlon => @trace.longitude, :anchor => "map=14/#{@trace.latitude}/#{@trace.longitude}" %> / <%= link_to t(".edit"), :controller => "site", :action => "edit", :gpx => @trace.id, :anchor => "map=14/#{@trace.latitude}/#{@trace.longitude}" %>)