From 925534524317d0b6e7786d5a891e2b462b897d0a Mon Sep 17 00:00:00 2001 From: jessib Date: Tue, 12 Mar 2013 14:18:18 -0700 Subject: Replace .erb with .haml files. --- billing/app/views/payments/confirm.html.erb | 16 ------------ billing/app/views/payments/confirm.html.haml | 26 +++++++++++++++++++ billing/app/views/payments/new.html.erb | 38 ---------------------------- billing/app/views/payments/new.html.haml | 25 ++++++++++++++++++ 4 files changed, 51 insertions(+), 54 deletions(-) delete mode 100644 billing/app/views/payments/confirm.html.erb create mode 100644 billing/app/views/payments/confirm.html.haml delete mode 100644 billing/app/views/payments/new.html.erb create mode 100644 billing/app/views/payments/new.html.haml (limited to 'billing/app') diff --git a/billing/app/views/payments/confirm.html.erb b/billing/app/views/payments/confirm.html.erb deleted file mode 100644 index 5ab851e..0000000 --- a/billing/app/views/payments/confirm.html.erb +++ /dev/null @@ -1,16 +0,0 @@ -

Payment Result

- -
Thank you for your payment.
- -

Transaction Details

- - - - - - - - - -
Amount$<%= @result.transaction.amount %>
Transaction ID:<%= @result.transaction.id %>
First Name:<%= h @result.transaction.customer_details.first_name %>
Last Name:<%= h @result.transaction.customer_details.last_name %>
Email:<%= h @result.transaction.customer_details.email %>
Credit Card:<%= h @result.transaction.credit_card_details.masked_number %>
Card Type:<%= h @result.transaction.credit_card_details.card_type %>
- diff --git a/billing/app/views/payments/confirm.html.haml b/billing/app/views/payments/confirm.html.haml new file mode 100644 index 0000000..21611f5 --- /dev/null +++ b/billing/app/views/payments/confirm.html.haml @@ -0,0 +1,26 @@ +%h1 Payment Result +%div Thank you for your payment. +%h2 Transaction Details +%table + %tr + %td Amount + %td + $#{@result.transaction.amount} + %tr + %td Transaction ID: + %td= @result.transaction.id + %tr + %td First Name: + %td= h @result.transaction.customer_details.first_name + %tr + %td Last Name: + %td= h @result.transaction.customer_details.last_name + %tr + %td Email: + %td= h @result.transaction.customer_details.email + %tr + %td Credit Card: + %td= h @result.transaction.credit_card_details.masked_number + %tr + %td Card Type: + %td= h @result.transaction.credit_card_details.card_type \ No newline at end of file diff --git a/billing/app/views/payments/new.html.erb b/billing/app/views/payments/new.html.erb deleted file mode 100644 index 092c518..0000000 --- a/billing/app/views/payments/new.html.erb +++ /dev/null @@ -1,38 +0,0 @@ -

Payment: $<%= h @amount %>

- -<% if @result -%> -
<%= h @result.errors.size %> error(s)
-<% end -%> - -<%= 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| -%> - <%= field_set_tag "Customer" do -%> - <%= f.fields_for :customer do |c| -%> -
<%= c.label :first_name, "First Name" %>
-
<%= c.text_field :first_name %>
-
<%= c.label :last_name, "Last Name" %>
-
<%= c.text_field :last_name %>
-
<%= c.label :email, "Email" %>
-
<%= c.text_field :email %>
- <% end -%> - <% end -%> - <%= field_set_tag "Credit Card" do -%> - <%= f.fields_for :credit_card do |c| -%> -
<%= c.label :number, "Number" %>
-
<%= c.text_field :number %>
-
<%= c.label :expiration_date, "Expiration Date (MM/YY)" %>
-
<%= c.text_field :expiration_date %>
-
<%= c.label :cvv, "CVV" %>
-
<%= c.text_field :cvv %>
- <% end -%> - <% end -%> - <%= hidden_field_tag :tr_data, Braintree::TransparentRedirect.transaction_data( - :redirect_url => confirm_payment_url, - :transaction => {:type => "sale", :amount => @amount} - ) %> - <%= f.submit "Submit" %> -<% end -%> diff --git a/billing/app/views/payments/new.html.haml b/billing/app/views/payments/new.html.haml new file mode 100644 index 0000000..9b06050 --- /dev/null +++ b/billing/app/views/payments/new.html.haml @@ -0,0 +1,25 @@ +%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| + = field_set_tag "Customer" do + = f.fields_for :customer do |c| + %div= c.label :first_name, "First Name" + %div= c.text_field :first_name + %div= c.label :last_name, "Last Name" + %div= c.text_field :last_name + %div= c.label :email, "Email" + %div= c.text_field :email + = field_set_tag "Credit Card" do + = f.fields_for :credit_card do |c| + %div= c.label :number, "Number" + %div= c.text_field :number + %div= c.label :expiration_date, "Expiration Date (MM/YY)" + %div= c.text_field :expiration_date + %div= c.label :cvv, "CVV" + %div= c.text_field :cvv + = hidden_field_tag :tr_data, Braintree::TransparentRedirect.transaction_data(:redirect_url => confirm_payment_url,:transaction => {:type => "sale", :amount => @amount}) + = f.submit "Submit" \ No newline at end of file -- cgit v1.2.3