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.
19 lines
466 B
19 lines
466 B
%p#notice= notice
|
|
%h1 Districts
|
|
%table
|
|
%thead
|
|
%tr
|
|
%th Name
|
|
%th State
|
|
%th{:colspan => "3"}
|
|
%tbody
|
|
- @districts.each do |district|
|
|
%tr
|
|
%td= district.name
|
|
%td= district.state_id
|
|
%td= link_to 'Show', district
|
|
%td= link_to 'Edit', edit_district_path(district)
|
|
%td= link_to 'Destroy', district, method: :delete, data: { confirm: 'Are you sure?' }
|
|
%br/
|
|
= link_to 'New District', new_district_path
|