Sha256: f15b9d28abf0733a25407f3e93c4e0d4c4cd3c10b36a48a45a613dae395ccbfe
Contents?: true
Size: 506 Bytes
Versions: 17
Compression:
Stored size: 506 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Listing Events</h1> <table> <thead> <tr> <th colspan="3"></th> </tr> </thead> <tbody> <% @events.each do |event| %> <tr> <td><%= link_to 'Show', event %></td> <td><%= link_to 'Edit', edit_event_path(event) %></td> <td><%= link_to 'Destroy', event, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Some resource', new_event_path %>
Version data entries
17 entries across 17 versions & 2 rubygems