Sha256: 876d79a629b175ed4f86e0b5bddf44465ae71dc90015b511a9e64172bc8a97dc
Contents?: true
Size: 691 Bytes
Versions: 1
Compression:
Stored size: 691 Bytes
Contents
<h1>Categories</h1> <div class="table-responsive"> <table class="table table-striped table-sm"> <thead> <tr> <th>Name</th> <th>Articles</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @categories.each do |category| %> <tr> <td><%= category.name %></td> <td><%= category.terms.size %></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> </div> <br> <%= link_to 'New Category', new_category_path %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gdpr_rails-0.1.0 | app/views/policy_manager/categories/index.html.erb |