<h1>Movies</h1> <%= link_to("New Movie", new_movie_path) %> <table width="100%"> <tr> <th>Movie</th> <th>Year Released</th> <th>Genre</th> <th>Actions</th> </tr> <% @movies.each do |m| %> <tr> <td><%= m.title %></td> <td><%= m.year_released %></td> <td><%= m.rating %></td> <td><%= m.genre %></td> <td> <%= link_to "Show", movie_path(m.id) %> <%= link_to "Edit", edit_movie_path(m.id) %> <%= link_to "Delete", movie_path(m.id), method: :delete, data: { confirm: 'Are you sure?' } %> </td> </tr> <% end %> </table>