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.
24 lines
736 B
24 lines
736 B
11 years ago
|
%h1 Listing conference_host_organizations
|
||
|
|
||
|
%table
|
||
|
%tr
|
||
|
%th Conference
|
||
|
%th Organization
|
||
|
%th Order
|
||
|
%th
|
||
|
%th
|
||
|
%th
|
||
|
|
||
|
- @conference_host_organizations.each do |conference_host_organization|
|
||
|
%tr
|
||
|
%td= conference_host_organization.conference_id
|
||
|
%td= conference_host_organization.organization_id
|
||
|
%td= conference_host_organization.order
|
||
|
%td= link_to 'Show', conference_host_organization
|
||
|
%td= link_to 'Edit', edit_conference_host_organization_path(conference_host_organization)
|
||
|
%td= link_to 'Destroy', conference_host_organization, :method => :delete, :data => { :confirm => 'Are you sure?' }
|
||
|
|
||
|
%br
|
||
|
|
||
|
= link_to 'New Conference host organization', new_conference_host_organization_path
|