Sha256: 3ec994f2fc7cf0a0ee73550b750d0cc3def05d3d28dffc483bab460693edbb26
Contents?: true
Size: 639 Bytes
Versions: 1
Compression:
Stored size: 639 Bytes
Contents
<h1>Listing notifications</h1> <table> <tr> <th>Title</th> <th>Content</th> <th>Url</th> <th></th> <th></th> <th></th> </tr> <% @notifications.each do |notification| %> <tr> <td><%= notification.title %></td> <td><%= notification.content %></td> <td><%= notification.url %></td> <td><%= link_to 'Show', notification %></td> <td><%= link_to 'Edit', edit_notification_path(notification) %></td> <td><%= link_to 'Destroy', notification, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Notification', new_notification_path %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
silvermoon-0.1 | spec/dummy/app/views/notifications/index.html.erb |