-<h2>
- <a class="geolink" href="<%= root_path %>"><span class="icon close"></span></a>
- <%= t "browse.note.#{@note.status}_title", :note_name => @note.id %>
-</h2>
-<div class="browse-section">
- <h4>
- <%= note_event('open', @note.created_at, @note.author) %>
- <% if @note.status == "closed" %>
- <br/>
- <%= note_event(@note.status, @note.closed_at, @note.comments.last.author) %>
- <% end %>
- </h4>
-</div>
-
-<% if @note.comments.find { |comment| comment.author.nil? } -%>
-<div class='browse-section common'>
- <p class='warning'><%= t "javascripts.notes.show.anonymous_warning" %></p>
-</div>
-<% end -%>
-
-<div class='browse-section common'>
- <div class='browse-field' id="c<%= @note.comments.first.id %>">
- <h4><%= t "browse.note.description" %></h4>
- <%= h(@note.comments.first.body.to_html) %>
- </div>