X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/56db9ca2b7e2475cd8025630049fb4a4b824f2d9..82b4c8e3f08697abdb62dd037f72085c9154d5b0:/app/views/browse/note.html.erb diff --git a/app/views/browse/note.html.erb b/app/views/browse/note.html.erb index ec4f8d3ae..1bacd27d6 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', :id => @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_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 %>