Created
April 8, 2011 05:25
-
-
Save anonymous/909342 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> | |
<%= render :partial => '/waypoints/waypoint', :locals => {:waypoints => :waypoints}%> | |
</div> | |
-------------------------------- | |
# _waypoint | |
<%= fields_for(waypoints) do |builder| %> | |
<div> | |
<%= render :partial => 'addresses/address', :locals => {@address => waypoints} %> | |
</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