<%= @post_definition.name.pluralize %>

<%= link_to 'Create', new_post_path(post_definition_id: @post_definition.id), class: 'btn btn-primary btn-sm' %>
<% @posts.each do |post| %> <% end %>
Name Created Last Update Actions
<%= post.field('Title').value %> <%= distance_of_time_in_words_to_now(post.created_at) %> User #<%= post.user_id %> <%= link_to "Edit", edit_post_path(post), class: 'btn btn-primary btn-sm'%> <%= link_to "Delete", post_path(post), method: :delete, data: { confirm: 'Are you sure?' }, class: 'btn btn-danger btn-sm'%>