X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a792b74bea261834791e9f75c64161436d37053f..c0adab7abaae779d2600aeb098f4d4fce07caba4:/app/views/browse/note.html.erb
diff --git a/app/views/browse/note.html.erb b/app/views/browse/note.html.erb
index c72730a76..1a792e873 100644
--- a/app/views/browse/note.html.erb
+++ b/app/views/browse/note.html.erb
@@ -1,9 +1,6 @@
<% set_title(t(".title", :id => @note.id)) %>
-
-
- <%= t ".#{@note.status}_title", :note_name => @note.id %>
-
+<%= render "sidebar_header", :title => t(".#{@note.status}_title", :note_name => @note.id) %>
<%= t(".description") %>
@@ -19,7 +16,10 @@
<% end %>
<%= t "browse.location" %>
- <%= link_to(tag.span(number_with_delimiter(@note.lat), :class => "latitude") + ", " + tag.span(number_with_delimiter(@note.lon), :class => "longitude"), root_path(:anchor => "map=18/#{@note.lat}/#{@note.lon}")) %>
+ <%= link_to(t(".coordinates_html",
+ :latitude => tag.span(number_with_delimiter(@note.lat), :class => "latitude"),
+ :longitude => tag.span(number_with_delimiter(@note.lon), :class => "longitude")),
+ root_path(:anchor => "map=18/#{@note.lat}/#{@note.lon}")) %>
@@ -35,7 +35,7 @@
<% if @note_comments.length > 1 %>
- <% @note_comments[1..-1].each do |comment| %> + <% @note_comments.drop(1).each do |comment| %>-
<%= note_event(comment.event, comment.created_at, comment.author) %>
<%= comment.body.to_html %>
@@ -48,25 +48,27 @@
<% if @note.status == "open" %>
<% if current_user -%>