X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/3fb931f9a86955faa39bec1fa4f2a731cbc74780..9869f975480a91b6a121ac8d2fd302ce67de7f55:/app/views/notes/mine.html.erb diff --git a/app/views/notes/mine.html.erb b/app/views/notes/mine.html.erb index c58548b47..13824419e 100644 --- a/app/views/notes/mine.html.erb +++ b/app/views/notes/mine.html.erb @@ -1,35 +1,33 @@ -
<%= raw @description %>
+<% content_for :heading do %> +<%= raw @description %>
+<% end %> <%= 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" %> + <% if note.closed? %> <%= image_tag("closed_note_marker.png", :alt => 'closed') %> <% else %> <%= image_tag("open_note_marker.png", :alt => 'open') %> <% 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 %> -<%= note.comments.first.body.to_html %> | -<%= l note.created_at %> | -<%= l note.updated_at %> | +<%= 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) %> |