X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/81a6c7b7bebb06c2e9711451e6795f65b34d59ca..15ff7b9843481dc12a3e1e774c26b1a72dcb7e4b:/app/views/browse/note.html.erb diff --git a/app/views/browse/note.html.erb b/app/views/browse/note.html.erb index 59c96c4aa..c91005b60 100644 --- a/app/views/browse/note.html.erb +++ b/app/views/browse/note.html.erb @@ -1,58 +1,65 @@ -<%= render :partial => "navigation" %> - -
<%= t "browse.note.opened" %> | -<%= t "browse.note.at_by", :when => friendly_date(@note.created_at), :user => note_author(@note) %> | -|
---|---|---|
<%= t "browse.note.closed" %> | -<%= t "browse.note.at_by", :when => friendly_date(@note.closed_at), :user => note_author(@note.comments.last) %> | -|
<%= t "browse.note.last_modified" %> | -<%= t "browse.note.at_by", :when => friendly_date(@note.updated_at), :user => note_author(@note.comments.last) %> | -|
<%= t "browse.note.description" %> | -<%= h(@note.comments.first.body) %> | -|
<%= t "browse.node_details.coordinates" %> | -<%= link_to ("#{number_with_delimiter(@note.lat)}, #{number_with_delimiter(@note.lon)}"), {:controller => 'site', :action => 'index', :lat => h(@note.lat), :lon => h(@note.lon), :zoom => "18"} %> |
- |
<%= t "browse.note.comments" %> | -
-
|
-
<%= t "browse.note.comments" %>
++ <% @note.comments[1..-1].each do |comment| %> +-
+ <%= comment.body.to_html %>
+ <%= note_event(comment.created_at, comment.author) %>
+
+ <% end %>
+
+