mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -07:00
24 lines
641 B
Text
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
|