Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
<%= simple_nested_form_for (@order), :html => {:multipart => true} do |f| %> <%= f.error_notification %> <div class="inputs"> <label> <%= link_to 'New Customer', new_customer_path %> <small>or</small></label><div class="clear"></div> <%= f.association :customer, :label =>'Existing Customer', :include_blank => false %> <%= f.input :due_date, :as => :date, :start_year => Date.today.year, :start_day => Date.today.day, :stary_month => Date.today.month, :order => [:month, :day, :year], :input_html => {:class => 'date' } %> <%= f.input :sales_tax, :input_html => {:class => 'text', :value => current_user.sales_tax, :onChange=>"itemcalculate()", :id => 'invoice-salestax' }, :hint => '%' %> <%= f.input :discount, :input_html => {:class => 'text', :onChange=>"itemcalculate()", :id => 'invoice-discount' }, :placeholder => '$30', :label => 'Discount' %> <%= f.fields_for :lineitems do |item| %> <div id='size'> <label style="margin-top:0 !important;">Details</label> <%= item.input :product_name, :input_html => {:class => 'text' }, :label => false, :wrapper_html => {:class => 'detail-wrapper' }, :input_html => {:class => 'details'}, :hint => 'Product Name', :placeholder => 'Gildan 2000' %> <%= item.input :color, :input_html => {:class => 'text' }, :label => false, :wrapper_html => {:class => 'detail-wrapper' }, :input_html => {:class => 'details'}, :hint => 'Product Color', :placeholder => 'Blue' %> <%= item.input :price_per, :input_html => {:class => 'text details', :onChange=>"itemcalculate()", :id => 'invoice-priceper' }, :label => false, :wrapper_html => {:class => 'detail-wrapper' }, :hint => 'Price per', :placeholder => "4.50", :required => true %> <%= item.input :extra_fee, :input_html => {:class => 'text details', :onChange=>"itemcalculate()", :id => 'invoice-extrafee' }, :label => false, :wrapper_html => {:class => 'detail-wrapper', :value => '0' }, :hint => 'Extra fee', :required => true %> <div class='clear'></div> <label>Sizes</label> <%= item.input :xxs, :input_html => {:class => 'sizes', :value => '0', :onChange=>"itemcalculate()", :id => 'invoice-xxs' }, :hint=> 'xxs', :label => false, :wrapper_html => {:class => 'size-wrapper' } %> <%= item.input :xs, :input_html => {:class => 'sizes', :value => '0', :onChange=>"itemcalculate()", :id => 'invoice-xs' }, :hint=> 'xs', :label => false, :wrapper_html => {:class => 'size-wrapper' } %> <%= item.input :s, :input_html => {:class => 'sizes', :value => '0', :onChange=>"itemcalculate()", :id => 'invoice-s' }, :hint=> 's' , :label => false, :wrapper_html => {:class => 'size-wrapper' }%> <%= item.input :m, :input_html => {:class => 'sizes', :value => '0', :onChange=>"itemcalculate()", :id => 'invoice-m' }, :hint=> 'm', :label => false, :wrapper_html => {:class => 'size-wrapper' } %> <%= item.input :l, :input_html => {:class => 'sizes', :value => '0', :onChange=>"itemcalculate()", :id => 'invoice-l' }, :hint=> 'l', :label => false, :wrapper_html => {:class => 'size-wrapper' } %> <%= item.input :xl, :input_html => {:class => 'sizes', :value => '0', :onChange=>"itemcalculate()", :id => 'invoice-xl' }, :hint=> 'xl', :label => false, :wrapper_html => {:class => 'size-wrapper' } %> <%= item.input :xxl, :input_html => {:class => 'sizes', :value => '0', :onChange=>"itemcalculate()", :id => 'invoice-xxl' }, :hint=> 'xxl', :label => false, :wrapper_html => {:class => 'size-wrapper' } %> <label>Extra Notes</label> <%= item.text_area :extra_notes %> <!-- start image upload --> <%= item.fields_for :images do |image| %> <%= f.file_field :image %> <%= image.link_to_remove "Remove Image", :id => 'remove-image' %> <% end %> <%= item.link_to_add "<img src='/images/icon-camera.png' id='camera-icon'/> Add an image".html_safe, :images, :id=> 'add-image' %> <!-- end image upload --> <div class='clear'></div> <%= item.link_to_remove "Remove Item" %> </div> <% end %> <p id='add-new-item'><%= f.link_to_add "+ Add an Item", :lineitems %></p> </div> <%= f.hidden_field :user_id, :value => current_user.id %> <div class="actions"> <%= f.button :submit %> </div> <% end %>