X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/56db9ca2b7e2475cd8025630049fb4a4b824f2d9..68a3df4d53c84508bf443058040379c3a18eb1a7:/app/views/browse/note.html.erb diff --git a/app/views/browse/note.html.erb b/app/views/browse/note.html.erb index ec4f8d3ae..5ab29e0d1 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_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 %>