-
-
Save waynerobinson/909346 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
# _job | |
<div> | |
<%= fields_for :job do | f | | |
<%= render :partial => 'waypoints/waypoint', :locals => {:job_form => f} %> | |
</div> | |
-------------------------------- | |
# _waypoint | |
<%= job_form.fields_for :waypoints do |f| %> | |
<div> | |
<%= render :partial => 'addresses/address', :locals => {:address => waypoint} %> | |
</div> | |
<% end %> | |
-------------------------------- | |
# _address | |
<%= fields_for address, :url => { :action => "create" } do |f| %> | |
<div class="field"> | |
<%= f.label :location_name %><br /> | |
<%= f.text_field :location_name %> | |
</div> | |
<div class="h2"> | |
Street Details | |
</div> | |
<div class="field"> | |
<%= f.label :number %><br /> | |
<%= f.text_field :street_number %> | |
</div> | |
<div class="field"> | |
<%= f.label :name %><br /> | |
<%= f.text_field :street_name %> | |
</div> | |
<div class="field"> | |
<%= f.label :type %><br /> | |
<%= f.text_field :street_type %> | |
</div> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment