<%= t "javascripts.notes.show.anonymous_warning" %>
<%= 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 %>