X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/9f993fe8c8be4664f975df426d69ded1dca77ae3..41d6f19a6bed3b1a53f2fba12ca86ffbac1f8f5a:/app/views/notes/index.html.erb diff --git a/app/views/notes/index.html.erb b/app/views/notes/index.html.erb new file mode 100644 index 000000000..50059625d --- /dev/null +++ b/app/views/notes/index.html.erb @@ -0,0 +1,37 @@ +<% content_for :heading do %> +

<%= t ".heading", :user => @user.display_name %>

+

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

+<% end %> + +<%= render :partial => "notes_paging_nav" %> + + + + + + + + + + + + +<% @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) %>
+ +<%= render :partial => "notes_paging_nav" %>