X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/76559d3de23b3af28b6d2014d12ed48d0cfc74cd..f1935b1c5786de8f27bee9b6b2da2f28f650468f:/app/views/browse/note.html.erb diff --git a/app/views/browse/note.html.erb b/app/views/browse/note.html.erb index ec4f8d3ae..0180e26ca 100644 --- a/app/views/browse/note.html.erb +++ b/app/views/browse/note.html.erb @@ -1,61 +1,76 @@ -<% content_for :head do %> -<%= stylesheet_link_tag 'browse' %> -<% end %> +<% set_title(t(".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) %>
-<%= t "javascripts.notes.show.anonymous_warning" %>
+ <% end -%> -<%= h(@note.comments.first.body) %>
-<%= report_link(t(".report"), @note) %>
+ <% end %> - <% if @note.comments.length > 1 %> -
+ <% @note_comments.drop(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 %>