-<table class="browse_details">
-
- <tr>
- <th><%= t "browse.note.opened" %></th>
- <td><%= t "browse.note.at_by", :when => friendly_date(@note.created_at), :user => note_author(@note) %></td>
- </tr>
-
- <% if @note.status == "closed" %>
- <tr>
- <th><%= t "browse.note.closed" %></th>
- <td><%= t "browse.note.at_by", :when => friendly_date(@note.closed_at), :user => note_author(@note.comments.last) %></td>
- </tr>
- <% elsif @note.comments.length > 1 %>
- <tr>
- <th><%= t "browse.note.last_modified" %></th>
- <td><%= t "browse.note.at_by", :when => friendly_date(@note.updated_at), :user => note_author(@note.comments.last) %></td>
- </tr>
- <% end %>
+<div class='column-1'>
+
+ <% 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>
+ <h4><%= t "browse.note.opened" %></h4>
+ <p><%= note_event(@note.created_at, @note.author) %></p>
+ </div>
+
+ <% if @note.status == "closed" %>
+ <div>
+ <h4><%= t "browse.note.closed" %></h4>
+ <p><%= note_event(@note.closed_at, @note.comments.last.author) %></p>
+ </div>
+ <% elsif @note.comments.length > 1 %>
+ <div>
+ <h4><%= t "browse.note.last_modified" %></h4>
+ <p><%= note_event(@note.updated_at, @note.comments.last.author) %></p>
+ </div>
+ <% end %>