Notes
<%= table_for @notes, class: "striped autofit" do |t| %>
<% t.column "Post" do |note| %>
<%= link_to note.post_id, note.post %>
<% end %>
<% t.column "Note" do |note| %>
<%= link_to "#{note.id}.#{note.version}", post_path(note.post_id, anchor: "note-#{note.id}") %>
<%= link_to "ยป", note_versions_path(search: { note_id: note.id }) %>
<% end %>
<% t.column "Body", td: { class: "col-expand" } do |note| %>
<%= note.body %>
<% unless note.is_active? %>
(deleted)
<% end %>
<% end %>
<% t.column "Created" do |note| %>
<%= time_ago_in_words_tagged(note.created_at) %>
<% end %>
<% end %>
<%= numbered_paginator(@notes) %>