<h1>Admin Blog Posts</h1> <%= link_to("New Post", new_admin_post_path) %> <table width="100%"> <tr> <th>Title</th> <th>Published At</th> <th>Pusblished?</th> <th>Category ID</th> <th>Actions</th> </tr> <% @posts.each do |post| %> <tr> <td><%= post.title %></td> <td><%= post.published_at %></td> <td><%= post.is_published %></td> <td><%= post.category_id %></td> <td> <%= link_to "Show", admin_post_path(post.id) %> <%= link_to "Edit", edit_admin_post_path(post.id) %> <%= link_to "Delete", admin_post_path(post.id), method: :delete, data: { confirm: 'Are you sure?' } %> </td> </tr> <% end %> </table> <%= link_to("Back to Home", root_path) %>