blob: d9c41ce39964887b0c6f4d6cec4f9c49a3231380 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
%h1
Payment: $#{h @amount}
- if @result
%div{:style => "color: red;"}
= h @result.errors.size
error(s)
= form_for :transaction, :params => @result && @result.params[:transaction], :errors => @result && @result.errors.for(:transaction), :builder => BraintreeHelper::BraintreeFormBuilder, :url => Braintree::TransparentRedirect.url, :html => {:autocomplete => "off"} do |f|
- if !@customer
= render :partial => 'non_customer_fields', :locals => {:f => f}
- else
= render :partial => 'customer_data'
= hidden_field_tag :tr_data, @tr_data
= f.submit "Submit"
|