<h1>Listing alerts</h1> <table> <thead> <tr> <th>Author</th> <th>Message</th> <th></th> <th></th> <th></th> </tr> </thead> <tbody> <% @alerts.each do |alert| %> <tr> <td><%= alert.author %></td> <td><%= alert.message %></td> <td><%= link_to 'Show', alert %></td> <td><%= link_to 'Edit', edit_alert_path(alert) %></td> <td><%= link_to 'Destroy', alert, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Alert', new_alert_path %>