X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/b70da7b8ea15ab48bb2f34155567cea6dffc8fc9..01c2aabd95ea9f8dcab18d6c7dd2a88fcbd87a68:/app/views/notes/index.html.erb?ds=sidebyside diff --git a/app/views/notes/index.html.erb b/app/views/notes/index.html.erb index 50059625d..d93978480 100644 --- a/app/views/notes/index.html.erb +++ b/app/views/notes/index.html.erb @@ -1,37 +1,46 @@ <% content_for :heading do %> -
<%= t ".subheading_html", :user => link_to(@user.display_name, user_path(@user)) %>
+<%= t ".subheading_html", + :user => link_to(@user.display_name, @user), + :submitted => tag.span(t(".subheading_submitted"), :class => "px-2 py-1 bg-primary bg-opacity-25"), + :commented => tag.span(t(".subheading_commented"), :class => "px-2 py-1 bg-white") %>
<% end %> -<%= render :partial => "notes_paging_nav" %> +<% if @notes.empty? %> +- | <%= t ".id" %> | -<%= t ".creator" %> | -<%= t ".description" %> | -<%= t ".created_at" %> | -<%= t ".last_changed" %> | +<% else %> + <%= render :partial => "notes_paging_nav" %> + +
---|
+ | <%= t ".id" %> | +<%= t ".creator" %> | +<%= t ".description" %> | +<%= t ".created_at" %> | +<%= t ".last_changed" %> | +
---|---|---|---|---|---|
+ <% if note.closed? %> + <%= image_tag("closed_note_marker.png", :alt => "closed", :size => "25x40") %> + <% else %> + <%= image_tag("open_note_marker.png", :alt => "open", :size => "25x40") %> + <% end %> + | +<%= link_to note.id, note %> | +<%= note_author(note.author) %> | +<%= note.comments.first.body.to_html %> | +<%= friendly_date_ago(note.created_at) %> | +<%= friendly_date_ago(note.updated_at) %> |
- <% if note.closed? %> - <%= image_tag("closed_note_marker.png", :alt => "closed", :size => "25x40") %> - <% else %> - <%= image_tag("open_note_marker.png", :alt => "open", :size => "25x40") %> - <% end %> - | -<%= link_to note.id, browse_note_path(note) %> | -<%= note_author(note.author) %> | -<%= note.comments.first.body.to_html %> | -<%= friendly_date_ago(note.created_at) %> | -<%= friendly_date_ago(note.updated_at) %> | -