<%= render :partial => "navigation" %>

<%= image_tag "#{@note.status}_note_marker.png", :alt => @note.status %> <%= t "browse.note.#{@note.status}_title", :note_name => @note.id %>

<%= render :partial => "map", :object => @note %> <% if @note.status == "closed" %> <% elsif @note.comments.length > 1 %> <% end %> <% if @note.comments.length > 1 %> <% end %>
<%= t "browse.note.opened" %> <%= t "browse.note.at_by", :when => friendly_date(@note.created_at), :user => note_author(@note) %>
<%= t "browse.note.closed" %> <%= t "browse.note.at_by", :when => friendly_date(@note.closed_at), :user => note_author(@note.comments.last) %>
<%= t "browse.note.last_modified" %> <%= t "browse.note.at_by", :when => friendly_date(@note.updated_at), :user => note_author(@note.comments.last) %>
<%= t "browse.note.description" %> <%= h(@note.comments.first.body) %>
<%= t "browse.node_details.coordinates" %>
<%= link_to ("#{number_with_delimiter(@note.lat)}, #{number_with_delimiter(@note.lon)}"), {: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| %> <% end %>
<%= h(comment.body) %>
<%= t "browse.note.at_by", :when => friendly_date(comment.created_at), :user => note_author(comment) %>