Created
June 2, 2009 18:12
-
-
Save wwalker/122427 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% form_for @tars_district_registration, :url => { :action => "update" } do |tars_district_registration_form| %> | |
<% tars_district_registration_form.fields_for :tars_attendees do |attendee_fields| %> | |
<% if attendee_fields.object.active? %> | |
First Name: <%= attendee_fields.text_field :first_name %> | |
Last Name: <%= attendee_fields.text_field :last_name %> | |
position: <%= attendee_fields.text_field :position %> | |
email: <%= attendee_fields.text_field :email %> | |
<% end %> | |
<% end %> | |
<% end %> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment