Sha256: 764ead94b58a7c8a746d0396f24237a7fbe1fca13194d18ac40e4c458f4ef207
Contents?: true
Size: 553 Bytes
Versions: 5
Compression:
Stored size: 553 Bytes
Contents
<h1>Listing categories</h1> <table> <thead> <tr> <th>Title</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @categories.each do |category| %> <tr> <td><%= category.title %></td> <td><%= link_to 'Show', category %></td> <td><%= link_to 'Edit', edit_category_path(category) %></td> <td><%= link_to 'Destroy', category, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Category', new_category_path %>
Version data entries
5 entries across 5 versions & 2 rubygems