1 <div class='browse-section header'>
2 <h2><%= t "browse.note.#{@note.status}_title", :note_name => @note.id %>
3 <span class="icon close"></span>
6 <%= t "browse.note.opened" %>:
7 <abbr><%= note_event(@note.created_at, @note.author) %></abbr> by
8 <% if @note.author.nil? %>
9 <%= t "browse.note.anonymous" %>
11 <%= note_author(@note.author) %>
13 <% if @note.status == "closed" %>
15 <%= t "browse.note.closed" %>:
16 <abbr><%= note_event(@note.closed_at, @note.author) %></abbr> by
17 <%= @note.comments.last.author %>
22 <% if @note.comments.find { |comment| comment.author.nil? } -%>
23 <div class='browse-section common'>
24 <p class='warning'><%= t "javascripts.notes.show.anonymous_warning" %></p>
28 <div class='browse-section common'>
29 <% if @note.status == "closed" %>
30 <div class='browse-field'>
31 <h4><%= t "browse.note.closed" %></h4>
32 <p><%= note_event(@note.closed_at, @note.comments.last.author) %></p>
34 <% elsif @note.comments.length > 1 %>
35 <div class='browse-field'>
36 <h4><%= t "browse.note.last_modified" %></h4>
37 <p><%= note_event(@note.updated_at, @note.comments.last.author) %></p>
41 <div class='browse-field' id="c<%= @note.comments.first.id %>">
42 <h4><%= t "browse.note.description" %></h4>
43 <%= h(@note.comments.first.body.to_html) %>
44 <!-- this provides it's own <p> tags -->
47 <div class='browse-field'>
48 <h4><%= t "browse.node_details.coordinates" %></h4>
49 <p class='geo'><%= link_to ("<span class='latitude'>#{number_with_delimiter(@note.lat)}</span>, <span class='longitude'>#{number_with_delimiter(@note.lon)}</span>".html_safe), {:controller => 'site', :action => 'index', :lat => h(@note.lat), :lon => h(@note.lon), :zoom => "18"} %></p>
53 <% if @note.comments.length > 1 %>
54 <div class='browse-section clearfix note-comments'>
55 <h4><%= t "browse.note.comments" %></h4>
57 <% @note.comments[1..-1].each do |comment| %>
58 <li id="c<%= comment.id %>">
59 <%= comment.body.to_html %>
60 <small class='deemphasize'><%= note_event(comment.created_at, comment.author) %></small>