Sha256: 07e9135586d52f46a639004a3c4b01c07bbafe9420a9305e148e9d067b7e44ac
Contents?: true
Size: 587 Bytes
Versions: 1
Compression:
Stored size: 587 Bytes
Contents
<p id="notice"><%= notice %></p> <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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
adminish-0.0.1 | test/dummy/app/views/categories/index.html.erb |