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.
20 lines
672 B
20 lines
672 B
%h1 Listing recipient_lists
|
|
%table
|
|
%tr
|
|
%th Name
|
|
%th Description
|
|
%th Recipient ids
|
|
%th
|
|
%th
|
|
%th
|
|
- @recipient_lists.each do |recipient_list|
|
|
%tr
|
|
%td= recipient_list.name
|
|
%td= recipient_list.description
|
|
%td= recipient_list.recipient_ids
|
|
%td= link_to 'Show', [recipient_list.school, recipient_list]
|
|
%td= link_to 'Edit', edit_legacy_school_legacy_recipient_list_path(recipient_list.school, recipient_list)
|
|
%td= link_to 'Destroy', [recipient_list.school, recipient_list], :confirm => 'Are you sure?', :method => :delete
|
|
%br/
|
|
= link_to 'New Recipient list', new_legacy_school_legacy_recipient_list_path(@school)
|