diff options
Diffstat (limited to 'billing/app/views')
-rw-r--r-- | billing/app/views/customer/_transaction.html.haml (renamed from billing/app/views/customers/_transaction.html.haml) | 0 | ||||
-rw-r--r-- | billing/app/views/customer/confirm.html.haml (renamed from billing/app/views/customers/confirm.html.haml) | 2 | ||||
-rw-r--r-- | billing/app/views/customer/edit.html.haml (renamed from billing/app/views/customers/edit.html.haml) | 2 | ||||
-rw-r--r-- | billing/app/views/customer/new.html.haml (renamed from billing/app/views/customers/new.html.haml) | 2 | ||||
-rw-r--r-- | billing/app/views/customer/show.html.haml (renamed from billing/app/views/customers/show.html.haml) | 0 | ||||
-rw-r--r-- | billing/app/views/payments/confirm.html.haml | 2 | ||||
-rw-r--r-- | billing/app/views/subscriptions/show.html.haml | 2 |
7 files changed, 5 insertions, 5 deletions
diff --git a/billing/app/views/customers/_transaction.html.haml b/billing/app/views/customer/_transaction.html.haml index e69de29..e69de29 100644 --- a/billing/app/views/customers/_transaction.html.haml +++ b/billing/app/views/customer/_transaction.html.haml diff --git a/billing/app/views/customers/confirm.html.haml b/billing/app/views/customer/confirm.html.haml index 975d1ad..5551622 100644 --- a/billing/app/views/customers/confirm.html.haml +++ b/billing/app/views/customer/confirm.html.haml @@ -11,4 +11,4 @@ - @result.customer.credit_cards.each do |cc| %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 += link_to 'View Customer Info', show_customer_path(customer.braintree_customer_id), :class=> :btn
\ No newline at end of file diff --git a/billing/app/views/customers/edit.html.haml b/billing/app/views/customer/edit.html.haml index bea3211..c2e5cb3 100644 --- a/billing/app/views/customers/edit.html.haml +++ b/billing/app/views/customer/edit.html.haml @@ -19,4 +19,4 @@ = link_to 'Change credit card', edit_credit_card_info_path(:id => @default_cc.token), :class => :btn = hidden_field_tag :tr_data, @tr_data = f.submit 'Save Customer Info', :class => :btn -= link_to 'Cancel', customer_path(@braintree_data.id), :class=> :btn
\ No newline at end of file += link_to 'Cancel', show_customer_path(@braintree_data.id), :class=> :btn
\ No newline at end of file diff --git a/billing/app/views/customers/new.html.haml b/billing/app/views/customer/new.html.haml index 2ff8229..6eaa3d1 100644 --- a/billing/app/views/customers/new.html.haml +++ b/billing/app/views/customer/new.html.haml @@ -16,7 +16,7 @@ %dl %dt= cc.label :number, 'Number' %dd= cc.text_field :number - %dt= cc.label :expiration_date, 'Exipration Date (MM/YY)' + %dt= cc.label :expiration_date, 'Expiration Date (MM/YY)' %dd= cc.text_field :expiration_date %dt= cc.label :cvv, 'CVV' %dd= cc.text_field :cvv diff --git a/billing/app/views/customers/show.html.haml b/billing/app/views/customer/show.html.haml index d385d98..d385d98 100644 --- a/billing/app/views/customers/show.html.haml +++ b/billing/app/views/customer/show.html.haml diff --git a/billing/app/views/payments/confirm.html.haml b/billing/app/views/payments/confirm.html.haml index fddbc45..9479eb9 100644 --- a/billing/app/views/payments/confirm.html.haml +++ b/billing/app/views/payments/confirm.html.haml @@ -26,4 +26,4 @@ %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 + = link_to 'View Customer Info', show_customer_path(customer.braintree_customer_id), :class=> :btn
\ No newline at end of file diff --git a/billing/app/views/subscriptions/show.html.haml b/billing/app/views/subscriptions/show.html.haml index b630a05..a3d57f9 100644 --- a/billing/app/views/subscriptions/show.html.haml +++ b/billing/app/views/subscriptions/show.html.haml @@ -1,4 +1,4 @@ %h1 Current Subscription = render :partial => "subscription_details", :locals => {:subscription => @subscription} = link_to 'Cancel Subscription', subscription_path, :confirm => 'Are you sure you want to cancel this subscription?', :method => :delete, :class => 'btn btn-danger' if @subscription.status == 'Active' # permission check or should that just be on show? -= link_to 'Show Customer Data', customer_path(@subscription_customer_id), :class => :btn
\ No newline at end of file += link_to 'Show Customer Data', show_customer_path(@subscription_customer_id), :class => :btn
\ No newline at end of file |