X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/d8aeb7e6537295aa32b1d0da6ca4a9493cbd1f80..de8ee536b1e6d511f6d943b2e9afabf778979e6b:/app/views/notes/index.html.erb diff --git a/app/views/notes/index.html.erb b/app/views/notes/index.html.erb index 50059625d..b5af25321 100644 --- a/app/views/notes/index.html.erb +++ b/app/views/notes/index.html.erb @@ -3,35 +3,41 @@

<%= t ".subheading_html", :user => link_to(@user.display_name, user_path(@user)) %>

<% end %> -<%= render :partial => "notes_paging_nav" %> +<% if @notes.empty? %> +

<%= t ".no_notes" %>

- - - - - - - - - +<% else %> + <%= render :partial => "notes_paging_nav" %> + +
<%= t ".id" %><%= t ".creator" %><%= t ".description" %><%= t ".created_at" %><%= t ".last_changed" %>
+ + + + + + + + + + + <% @notes.each do |note| -%> + class="creator"<% end %>> + + + + + + - -<% @notes.each do |note| -%> - class="creator"<% end %>> - - - - - - - -<% end -%> -
<%= 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, 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) %>
- <% 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) %>
+ <% end -%> + -<%= render :partial => "notes_paging_nav" %> + <%= render :partial => "notes_paging_nav" %> + +<% end -%>