X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/4cc2b63d5c38158e6beb114147be723425ec412e..cdfe2ac21ec01344b4b10d566582e7cc2b2eb7cb:/app/views/browse/note.html.erb diff --git a/app/views/browse/note.html.erb b/app/views/browse/note.html.erb index 8ccd525a3..061a86b06 100644 --- a/app/views/browse/note.html.erb +++ b/app/views/browse/note.html.erb @@ -1,58 +1,65 @@ -<% content_for :head do %> - <%= stylesheet_link_tag 'browse' %> -<% end %> - -<% content_for :sidebar do %> -
<%= t "javascripts.notes.show.anonymous_warning" %>
-<%= note_event(@note.created_at, @note.author) %>
-<%= note_event(@note.closed_at, @note.comments.last.author) %>
-<%= note_event(@note.updated_at, @note.comments.last.author) %>
-<%= h(@note.comments.first.body.to_html) %>
-<%= t "javascripts.notes.show.anonymous_warning" %>
+<%= link_to ("#{number_with_delimiter(@note.lat)}, #{number_with_delimiter(@note.lon)}".html_safe), {:controller => 'site', :action => 'index', :lat => h(@note.lat), :lon => h(@note.lon), :zoom => "18"} %>
+<%= note_event(@note.closed_at, @note.comments.last.author) %>
<%= note_event(@note.updated_at, @note.comments.last.author) %>
<%= link_to ("#{number_with_delimiter(@note.lat)}, #{number_with_delimiter(@note.lon)}".html_safe), {:controller => 'site', :action => 'index', :lat => h(@note.lat), :lon => h(@note.lon), :zoom => "18"} %>
+
<%= t "browse.note.comments" %>
++ <% @note.comments[1..-1].each do |comment| %> +-
+ <%= comment.body.to_html %>
+ <%= note_event(comment.created_at, comment.author) %>
+
+ <% end %>
+
+