You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
432 B
18 lines
432 B
%h1 Schools
|
|
%table
|
|
%thead
|
|
%tr
|
|
%th Name
|
|
%th District
|
|
%th{:colspan => "3"}
|
|
%tbody
|
|
- @schools.each do |school|
|
|
%tr
|
|
%td= school.name
|
|
%td= school.district_id
|
|
%td= link_to 'Show', school
|
|
%td= link_to 'Edit', edit_school_path(school)
|
|
%td= link_to 'Destroy', school, method: :delete, data: { confirm: 'Are you sure?' }
|
|
%br/
|
|
= link_to 'New School', new_school_path
|