Sha256: ae34de6fbedb023db33c170d3c846103a7d2209e1bfee9bdb863cc3163a1d7f9
Contents?: true
Size: 1006 Bytes
Versions: 1
Compression:
Stored size: 1006 Bytes
Contents
<!-- Main Content --> <div class="wrapper wrapper-content"> <div class="panel panel-primary"> <div class="panel-heading"> <i class="fa fa-list-ul"></i> Category List </div> <div class="panel-body"> <table class="table table-bordered table-striped table-hover"> <thead> <tr> <th>Category Name</th> <th></th> </tr> </thead> <tbody> <% @modules_categories.each do |modules_category| %> <tr> <td><%= modules_category.catname %></td> <td><div class="btn-group" role="group" aria-label="Blog Articles"> <%= link_to 'Edit', edit_modules_category_path(category) , class: "btn btn-primary btn-xs" %> <%= link_to 'Trash', modules_category, class: "btn btn-danger btn-xs", method: :delete, data: { confirm: 'Are you sure?' } %> </div> </td> </tr> <% end %> </tbody> </table> <%= link_to 'New Category', new_modules_category_path, class: "btn btn-primary" %> </div> </div> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
phcpresspro-3.0.8 | app/views/phcpresspro/modules/categories/index.html.erb |