index.html.erb 547 B

12345678910111213141516171819202122232425
  1. <h1>Listing microposts</h1>
  2. <table>
  3. <tr>
  4. <th>Content</th>
  5. <th>User</th>
  6. <th></th>
  7. <th></th>
  8. <th></th>
  9. </tr>
  10. <% @microposts.each do |micropost| %>
  11. <tr>
  12. <td><%= micropost.content %></td>
  13. <td><%= micropost.user_id %></td>
  14. <td><%= link_to 'Show', micropost %></td>
  15. <td><%= link_to 'Edit', edit_micropost_path(micropost) %></td>
  16. <td><%= link_to 'Destroy', micropost, confirm: 'Are you sure?', method: :delete %></td>
  17. </tr>
  18. <% end %>
  19. </table>
  20. <br />
  21. <%= link_to 'New Micropost', new_micropost_path %>