diff options
author | jessib <jessib@leap.se> | 2013-06-06 11:48:50 -0700 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-07-17 10:47:13 +0200 |
commit | c4379dcfdc8b27fae15eea5c4ba15b8906e3bb76 (patch) | |
tree | 908ca0b02f4bbb3d04c59c9cf55ad0b82159bc02 /billing | |
parent | 9af9b974b80cf7de11766c0ba56b9ab178911152 (diff) |
Some links at end of confirmation pages.
Diffstat (limited to 'billing')
-rw-r--r-- | billing/app/views/customers/confirm.html.haml | 4 | ||||
-rw-r--r-- | billing/app/views/payments/confirm.html.haml | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/billing/app/views/customers/confirm.html.haml b/billing/app/views/customers/confirm.html.haml index cfe127e..975d1ad 100644 --- a/billing/app/views/customers/confirm.html.haml +++ b/billing/app/views/customers/confirm.html.haml @@ -9,4 +9,6 @@ %dd= @result.customer.phone %dt Credit Card - @result.customer.credit_cards.each do |cc| - %dd= cc.masked_number
\ No newline at end of file + %dd= cc.masked_number +- customer = Customer.find_by_user_id(current_user.id) += link_to 'View Customer Info', customer_path(customer.braintree_customer_id), :class=> :btn
\ No newline at end of file diff --git a/billing/app/views/payments/confirm.html.haml b/billing/app/views/payments/confirm.html.haml index 21611f5..fddbc45 100644 --- a/billing/app/views/payments/confirm.html.haml +++ b/billing/app/views/payments/confirm.html.haml @@ -23,4 +23,7 @@ %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 + %td= h @result.transaction.credit_card_details.card_type +- if current_user + - customer = Customer.find_by_user_id(current_user.id) + = link_to 'View Customer Info', customer_path(customer.braintree_customer_id), :class=> :btn
\ No newline at end of file |