X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/51a21e6738c5fe524472971e8171bf2442bea415..e4504399ae55525f22a7fb47e0c47434cef8cf0a:/app/views/browse/note.html.erb diff --git a/app/views/browse/note.html.erb b/app/views/browse/note.html.erb index dbf384799..12842f87c 100644 --- a/app/views/browse/note.html.erb +++ b/app/views/browse/note.html.erb @@ -1,5 +1,17 @@ -
-

<%= t "browse.note.#{@note.status}_title", :note_name => @note.id %>

+<% set_title("#{t('browse.note.title')} | #{@note.id}") %> + +

+ + <%= t "browse.note.#{@note.status}_title", :note_name => @note.id %> +

+
+

+ <%= note_event('open', @note.created_at, @note.author) %> + <% if @note.status == "closed" %> +
+ <%= note_event(@note.status, @note.closed_at, @note.comments.last.author) %> + <% end %> +

<% if @note.comments.find { |comment| comment.author.nil? } -%> @@ -9,26 +21,9 @@ <% end -%>
-
-

<%= t "browse.note.opened" %>

-

<%= note_event(@note.created_at, @note.author) %>

-
- - <% if @note.status == "closed" %> -
-

<%= t "browse.note.closed" %>

-

<%= note_event(@note.closed_at, @note.comments.last.author) %>

-
- <% elsif @note.comments.length > 1 %> -
-

<%= t "browse.note.last_modified" %>

-

<%= note_event(@note.updated_at, @note.comments.last.author) %>

-
- <% end %> -

<%= t "browse.note.description" %>

-

<%= h(@note.comments.first.body.to_html) %>

+ <%= h(@note.comments.first.body.to_html) %>
@@ -38,15 +33,34 @@
<% if @note.comments.length > 1 %> -
-

<%= t "browse.note.comments" %>

+
    <% @note.comments[1..-1].each do |comment| %>
  • + <%= note_event(comment.event, comment.created_at, comment.author) %> <%= comment.body.to_html %> - <%= note_event(comment.created_at, comment.author) %>
  • <% end %>
<% end %> +
+ <% if @note.status == "open" %> +
+ +
+ + + +
+
+ <% else %> +
+ +
+ + +
+
+ <% end %> +