summaryrefslogtreecommitdiff
path: root/app/views/alerts/index.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/alerts/index.html.erb')
-rw-r--r--app/views/alerts/index.html.erb29
1 files changed, 0 insertions, 29 deletions
diff --git a/app/views/alerts/index.html.erb b/app/views/alerts/index.html.erb
deleted file mode 100644
index 458b951..0000000
--- a/app/views/alerts/index.html.erb
+++ /dev/null
@@ -1,29 +0,0 @@
-<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 %>