mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 13:38:18 -08:00
19 lines
672 B
Text
19 lines
672 B
Text
%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)
|