Listing stars

<% @stars.each do |star| %> <% end %>
Name
<%= star.name %> <%= link_to 'Show', star %> <%= link_to 'Edit', edit_star_path(star) %> <%= link_to 'Destroy', star, method: :delete, data: { confirm: 'Are you sure?' } %>

<%= link_to 'New Star', new_star_path %>