X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/c276625e7f35a1f9c31fe95325e150879f0b9a73..83043d6f1cd85729a3f91e5c73d78a39b8ae7d04:/app/views/notes/show.html.erb?ds=sidebyside diff --git a/app/views/notes/show.html.erb b/app/views/notes/show.html.erb index 2378d8c2e..d17612e29 100644 --- a/app/views/notes/show.html.erb +++ b/app/views/notes/show.html.erb @@ -4,37 +4,63 @@
<%= note_event("opened", @note.created_at, @note.author) %>
+ <% if @note.status == "closed" %> +<%= note_event(@note.status, @note.closed_at, @note.all_comments.last.author) %>
+ <% end %> ++ <%= t "browse.location" %> + <%= link_to t(".coordinates_html", + :latitude => tag.span(number_with_delimiter(@note.lat), :class => "latitude"), + :longitude => tag.span(number_with_delimiter(@note.lon), :class => "longitude")), + root_path(:anchor => "map=18/#{@note.lat}/#{@note.lon}") %> +
<%= t ".anonymous_warning" %>
<% end -%> +
<% @note_comments.drop(1).each do |comment| %>-
- <%= note_event(comment.event, comment.created_at, comment.author) %>
- <%= comment.body.to_html %>
+ <%= note_event(comment.event, comment.created_at, comment.author) %>
+
+ <%= comment.body.to_html %>
+
<% end %>
@@ -47,32 +73,44 @@+ <%= link_to t(".log_in_to_comment"), login_path(:referer => request.fullpath) %> +
<% end -%> <% else %>