]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/browse/_common_details.html.erb
Merge remote-tracking branch 'upstream/pull/2838'
[rails.git] / app / views / browse / _common_details.html.erb
index 17a5f1f40708867479f07ceb172adbfb4c6ca43c..3748f2f6587409b0c21166b1c24df2cb077cbd67 100644 (file)
@@ -1,32 +1,33 @@
-<h4>
+<h4 class="details">
+  <%= t "browse.version" %>
+  #<%= common_details.version %>
+</h4>
+
+<p class="font-italic">
   <% if common_details.changeset.tags['comment'].present? %>
-    <%= linkify(h(common_details.changeset.tags['comment'])) %>
+    <%= linkify(common_details.changeset.tags["comment"]) %>
   <% else %>
-    <%= t 'browse.no_comment' %>
+    <%= t "browse.no_comment" %>
   <% end %>
-</h4>
+</p>
 
 <div class="details">
-  <%=
-      t "browse.#{common_details.visible? ? :edited : :deleted}_by_html",
-        :time => distance_of_time_in_words_to_now(common_details.timestamp),
+  <%= t "browse.#{common_details.visible? ? :edited : :deleted}_by_html",
+        :time => time_ago_in_words(common_details.timestamp, :scope => :'datetime.distance_in_words_ago'),
         :user => changeset_user_link(common_details.changeset),
-        :title => l(common_details.timestamp)
-  %>
-</div>
-
-<div class="details">
-  <%= t 'browse.version' %>
-  #<%= h(common_details.version) %>
+        :title => l(common_details.timestamp) %>
   &middot;
-  <%= t 'browse.in_changeset' %>
+  <%= t "browse.in_changeset" %>
   #<%= link_to common_details.changeset_id, :action => :changeset, :id => common_details.changeset_id %>
 </div>
 
 <% if @type == "node" and common_details.visible? %>
 <div class="details geo">
-  <%= t 'browse.location' %>
-  <%= link_to(content_tag(:span, number_with_delimiter(common_details.lat), :class => "latitude") + ", " + content_tag(:span, number_with_delimiter(common_details.lon), :class => "longitude"), {:controller => 'site', :action => 'index', :anchor => "map=18/#{common_details.lat}/#{common_details.lon}"}) %>
+  <%= t "browse.location" %>
+  <%= link_to(t(".coordinates_html",
+                :latitude => tag.span(number_with_delimiter(common_details.lat), :class => "latitude"),
+                :longitude => tag.span(number_with_delimiter(common_details.lon), :class => "longitude")),
+              root_path(:anchor => "map=18/#{common_details.lat}/#{common_details.lon}")) %>
 </div>
 <% end %>