Sha256: 399eb86d33007b61ddd1cbc8662a6d25d2b1c8ca4cb04cb11a5a806bd71d1926
Contents?: true
Size: 716 Bytes
Versions: 1
Compression:
Stored size: 716 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Topics</h1> <table> <thead> <tr> <th>Title</th> <th>Slug</th> <th>Color</th> <th>Views</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @topics.each do |topic| %> <tr> <td><%= topic.title %></td> <td><%= topic.slug %></td> <td><%= topic.color %></td> <td><%= topic.views %></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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
friendly_slug-0.1.6 | friendly_slug_gem_test/app/views/topics/index.html.erb |