Sha256: 3beff06974792242870c04fe9138c617e8d60de5a17db22c5a4967362e98f287
Contents?: true
Size: 610 Bytes
Versions: 57
Compression:
Stored size: 610 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Listing Topics</h1> <table> <thead> <tr> <th>Name</th> <th>Place</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @topics.each do |topic| %> <tr> <td><%= topic.name %></td> <td><%= topic.place %></td> <td><%= link_to 'Show', topic %></td> <td><%= link_to 'Edit', edit_topic_path(topic) %></td> <td><%= link_to 'Destroy', topic, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Topic', new_topic_path %>
Version data entries
57 entries across 57 versions & 1 rubygems