X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/56db9ca2b7e2475cd8025630049fb4a4b824f2d9..2b4f8e92c969a5508b73ae7af45811a118fda6b1:/app/views/browse/note.html.erb diff --git a/app/views/browse/note.html.erb b/app/views/browse/note.html.erb index ec4f8d3ae..90d34b574 100644 --- a/app/views/browse/note.html.erb +++ b/app/views/browse/note.html.erb @@ -1,61 +1,57 @@ -<% content_for :head do %> -<%= stylesheet_link_tag 'browse' %> -<% end %> +<% set_title("#{t('browse.note.title')} | #{@note.id}") %> -<% content_for :heading do %> -
<%= t "browse.note.at_by_html", :when => friendly_date(@note.created_at), :user => note_author(@note) %>
-<%= t "browse.note.at_by_html", :when => friendly_date(@note.closed_at), :user => note_author(@note.comments.last) %>
-<%= t "browse.note.at_by_html", :when => friendly_date(@note.updated_at), :user => note_author(@note.comments.last) %>
-<%= h(@note.comments.first.body) %>
-<%= t "javascripts.notes.show.anonymous_warning" %>
+ <% end -%> + <% if @note.comments.length > 1 %> -
<% @note.comments[1..-1].each do |comment| %> --
+
-
+ <%= note_event(comment.event, comment.created_at, comment.author) %>
<%= comment.body.to_html %>
- <%= t "browse.note.at_by_html", :when => friendly_date(comment.created_at), :user => note_author(comment) %>
<% end %>