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
830 B
24 lines
830 B
11 years ago
|
%h1 Listing conference_registration_responses
|
||
|
|
||
|
%table
|
||
|
%tr
|
||
|
%th Conference registration
|
||
|
%th Registration form field
|
||
|
%th Data
|
||
|
%th
|
||
|
%th
|
||
|
%th
|
||
|
|
||
|
- @conference_registration_responses.each do |conference_registration_response|
|
||
|
%tr
|
||
|
%td= conference_registration_response.conference_registration_id
|
||
|
%td= conference_registration_response.registration_form_field_id
|
||
|
%td= conference_registration_response.data
|
||
|
%td= link_to 'Show', conference_registration_response
|
||
|
%td= link_to 'Edit', edit_conference_registration_response_path(conference_registration_response)
|
||
|
%td= link_to 'Destroy', conference_registration_response, :method => :delete, :data => { :confirm => 'Are you sure?' }
|
||
|
|
||
|
%br
|
||
|
|
||
|
= link_to 'New Conference registration response', new_conference_registration_response_path
|