28 lines
546 B
Plaintext
28 lines
546 B
Plaintext
<h1>Listing posts</h1>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>User</th>
|
|
<th>Title</th>
|
|
<th>Body</th>
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
|
|
<% @posts.each do |post| %>
|
|
<tr>
|
|
<td><%= post.user_id %></td>
|
|
<td><%= post.title %></td>
|
|
<td><%= post.body %></td>
|
|
<td><%= link_to 'Show', post %></td>
|
|
<td><%= link_to 'Edit', edit_post_path(post) %></td>
|
|
<td><%= link_to 'Destroy', post, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
|
|
<br />
|
|
|
|
<%= link_to 'New Post', new_post_path %>
|