|
<% if product.image_path != "" -%>
|
<%= text_field "items", product.id, :size => "3", :value => @qty[product.code], :autocomplete => "off", :class => "qty" -%> @ $<%=product.price %> each | |
| Coupon Code: | <%= text_field_tag 'coupon', session[:coupon_text], :autocomplete => 'off' %> | |
| Payment Method: |
<%= radio_button_tag 'payment_type', 'cc', !(['paypal', 'gcheckout'].member? @payment_type), :id => 'creditcard' %>
<%= radio_button_tag 'payment_type', 'paypal', @payment_type == 'paypal', :id => 'paypal' %>
<%= radio_button_tag 'payment_type', 'gcheckout', @payment_type == 'gcheckout', :id => 'gcheckout' %>
|
|
| <%= flash[:notice] %> | ||