X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/4d91fe3dd95c1058cb8d24fd4c900223e30b9059..2f419c7ab0425550146fb771a54b7ffece63c246:/app/views/notes/mine.html.erb diff --git a/app/views/notes/mine.html.erb b/app/views/notes/mine.html.erb index 50c15cd9d..266349b30 100644 --- a/app/views/notes/mine.html.erb +++ b/app/views/notes/mine.html.erb @@ -1,37 +1,37 @@ -
<%= raw @description %>
+<% content_for :heading do %> +<%= 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'changeset.changesets.user' %> | -<%= t'changeset.changesets.comment' %> | -<%= t'changeset.changesets.saved_at' %> | -<%= t'note.mine.last_changed' %> | -
---|
+ | <%= 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 %> | - <% if note.author.nil? %> -<%= note.author_name %> | - <% else %> -<%= link_to h(note.author_name), :controller => "user", :action => "view", :display_name => note.author_name %> | - <% end %> -<%= htmlize note.comments.first.body %> | -<%= l note.created_at %> | -<%= l note.updated_at %> | +<%= 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) %> |