X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/054f934f27e79ab0f7a25a89b6b719cc2cb0cb06..c798962cda8ede6425ce56c59533bc476180a830:/app/views/browse/note.html.erb?ds=sidebyside diff --git a/app/views/browse/note.html.erb b/app/views/browse/note.html.erb index 2d2560ef2..c91005b60 100644 --- a/app/views/browse/note.html.erb +++ b/app/views/browse/note.html.erb @@ -1,17 +1,31 @@ -
<%= t "javascripts.notes.show.anonymous_warning" %>
+<%= t "javascripts.notes.show.anonymous_warning" %>
<%= note_event(@note.created_at, @note.author) %>
-<%= h(@note.comments.first.body.to_html) %>
+ <%= h(@note.comments.first.body.to_html) %> +<%= 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"} %>
+<%= 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) %>
+ <%= note_event(comment.created_at, comment.author) %>
<% end %>