X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/ff7ddb6b86bf918a9418af7382836b41594d45e4..697e36f364506037efb198f454226ca1eb956bed:/app/views/traces/show.html.erb diff --git a/app/views/traces/show.html.erb b/app/views/traces/show.html.erb index e049797a8..6df31760a 100644 --- a/app/views/traces/show.html.erb +++ b/app/views/traces/show.html.erb @@ -1,5 +1,5 @@ <% content_for :heading do %> -
<%= t ".filename" %> | <%= @trace.name %> (<%= link_to t(".download"), trace_data_path(@trace) %>) | @@ -22,19 +22,25 @@ <% if @trace.inserted? %>|
<%= 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}" %>) |
<%= t ".owner" %> | -<%= link_to h(@trace.user.display_name), user_path(@trace.user) %> | +<%= link_to @trace.user.display_name, user_path(@trace.user) %> |
<%= t ".description" %> | -<%= h(@trace.description) %> | +<%= @trace.description %> |
<%= t ".tags" %> | @@ -55,10 +61,10 @@