X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/898cc828dd1f1167f85abbf35c8e3f0ed640ac1e..92ca4069957666065194e0b63de5b46261b8a21d:/app/views/notes/mine.html.erb diff --git a/app/views/notes/mine.html.erb b/app/views/notes/mine.html.erb index fd0e29165..2f68ba5c6 100644 --- a/app/views/notes/mine.html.erb +++ b/app/views/notes/mine.html.erb @@ -1,35 +1,37 @@ <% content_for :heading do %> -

<%= @heading %>

-

<%= raw @description %>

+

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

+

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

<% end %> -<%= render :partial => 'notes_paging_nav' %> +<%= render :partial => "notes_paging_nav" %> - - - - - - - - - +
<%= t'note.mine.id' %><%= t'note.mine.creator' %><%= t'note.mine.description' %><%= t'note.mine.created_at' %><%= t'note.mine.last_changed' %>
+ + + + + + + + + + <% @notes.each do |note| -%> - class="creator"<% end %>> + class="creator"<% end %>> - + - - - + + + <% end -%>
<%= t ".id" %><%= t ".creator" %><%= t ".description" %><%= t ".created_at" %><%= t ".last_changed" %>
- <% if note.status == "closed" %> - <%= image_tag("closed_note_marker.png", :alt => 'closed') %> + <% if note.closed? %> + <%= image_tag("closed_note_marker.png", :alt => "closed", :size => "25x40") %> <% else %> - <%= image_tag("open_note_marker.png", :alt => 'open') %> + <%= image_tag("open_note_marker.png", :alt => "open", :size => "25x40") %> <% end %> <%= link_to note.id.to_s, :controller => "browse", :action => "note", :id => note.id %><%= link_to note.id, browse_note_path(note) %> <%= note_author(note.author) %><%= note.comments.first.body.to_html %><%= t 'note.mine.ago_html', :when => friendly_date(note.created_at) %><%= t 'note.mine.ago_html', :when => friendly_date(note.updated_at) %><%= note.comments.first.body.to_html %><%= friendly_date_ago(note.created_at) %><%= friendly_date_ago(note.updated_at) %>
-<%= render :partial => 'notes_paging_nav' %> +<%= render :partial => "notes_paging_nav" %>