blob: 458b9516ee858174bb579286a5b3d8a837da4528 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<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 %>
|