X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/827024f7e6c48a11dbe08e569e2cbd852701bd31..5a668bfbe401c9a771cd2adfa0262eb547219ff7:/app/views/notes/mine.html.erb diff --git a/app/views/notes/mine.html.erb b/app/views/notes/mine.html.erb index 13824419e..266349b30 100644 --- a/app/views/notes/mine.html.erb +++ b/app/views/notes/mine.html.erb @@ -1,35 +1,37 @@ <% content_for :heading do %> -
<%= raw @description %>
+<%= 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 '.id' %> | -<%= t '.creator' %> | -<%= t '.description' %> | -<%= t '.created_at' %> | -<%= t '.last_changed' %> | -|||
---|---|---|---|---|---|---|---|---|
+ | <%= t ".id" %> | +<%= t ".creator" %> | +<%= t ".description" %> | +<%= t ".created_at" %> | +<%= t ".last_changed" %> | +|||
<% if note.closed? %> - <%= image_tag("closed_note_marker.png", :alt => '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 '.ago_html', :when => friendly_date(note.created_at) %> | -<%= t '.ago_html', :when => friendly_date(note.updated_at) %> | +<%= friendly_date_ago(note.created_at) %> | +<%= friendly_date_ago(note.updated_at) %> |