Created
July 26, 2008 00:34
-
-
Save benburkert/2565 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
##haml | |
-form_for @order, :action => url(:shipping) do | |
.checkoutWrapper | |
-fields_for @order.shipping_info do | |
.shippingAddress | |
%h4 | |
Shipping Address | |
%fieldset#shippingAddress | |
%div | |
%span=text_control :name, :label => "Name" | |
##html | |
<form method="post" action="/checkout/shipping"><input type="hidden" class="hidden" value="put" name="_method"/> <div class='checkoutWrapper'> | |
<div class='shippingAddress'> | |
<h4> | |
Shipping Address | |
</h4> | |
<fieldset id='shippingAddress'> | |
<div> | |
<span><label for="data_mapper::associations::many_to_one::proxy_name">Name</label><input type="text" class="text" name="data_mapper::associations::many_to_one::proxy[name]" value="" id="data_mapper::associations::many_to_one::proxy_name"/></span> | |
</div> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment