sqm-dashboards/app/views/categories/index.html.haml
2017-03-04 16:25:24 -05:00

24 lines
641 B
Text

%p#notice= notice
%h1 Categories
%table
%thead
%tr
%th Name
%th Blurb
%th Description
%th External
%th Parent category
%th{:colspan => "3"}
%tbody
- @categories.each do |category|
%tr
%td= category.name
%td= category.blurb
%td= category.description
%td= category.external_id
%td= category.parent_category_id
%td= link_to 'Show', category
%td= link_to 'Edit', edit_category_path(category)
%td= link_to 'Destroy', category, method: :delete, data: { confirm: 'Are you sure?' }
%br/
= link_to 'New Category', new_category_path