20 lines
420 B
Plaintext
20 lines
420 B
Plaintext
%h1 Listing merged_sections
|
|
|
|
%table
|
|
%thead
|
|
%tr
|
|
%th
|
|
%th
|
|
%th
|
|
|
|
%tbody
|
|
- @merged_sections.each do |merged_section|
|
|
%tr
|
|
%td= link_to 'Show', merged_section
|
|
%td= link_to 'Edit', edit_merged_section_path(merged_section)
|
|
%td= link_to 'Destroy', merged_section, method: :delete, data: { confirm: 'Are you sure?' }
|
|
|
|
%br
|
|
|
|
= link_to 'New Section', new_merged_section_path
|