diff options
author | jessib <jessib@riseup.net> | 2013-07-23 13:26:55 -0700 |
---|---|---|
committer | jessib <jessib@riseup.net> | 2013-07-23 13:26:55 -0700 |
commit | 979aa417aa722c5e550219bff90ec757ac098a0f (patch) | |
tree | 385b89ac8b837f7230c48b92f2f30b72d0da9d76 /billing/app/views/subscriptions | |
parent | 465415b9806a2de258d12df10213601eba87d515 (diff) |
Some clean-up of billing display.
Diffstat (limited to 'billing/app/views/subscriptions')
-rw-r--r-- | billing/app/views/subscriptions/new.html.haml | 7 | ||||
-rw-r--r-- | billing/app/views/subscriptions/show.html.haml | 3 |
2 files changed, 5 insertions, 5 deletions
diff --git a/billing/app/views/subscriptions/new.html.haml b/billing/app/views/subscriptions/new.html.haml index dba5f53..4183458 100644 --- a/billing/app/views/subscriptions/new.html.haml +++ b/billing/app/views/subscriptions/new.html.haml @@ -7,8 +7,9 @@ = simple_form_for :subscription, :url => :subscriptions do |f| = hidden_field_tag :payment_method_token, @payment_method_token = hidden_field_tag :plan_id, @plans[0].id - = f.submit 'Subscribe' + .form-actions + = f.submit t(:subscribe), :class => 'btn btn-primary' - else - You must store a customer in braintree before subscribing to a plan + = t(:must_create_customer) %p - = link_to 'Create a new braintree customer', new_customer_path + = link_to t(:create_new_customer), new_customer_path diff --git a/billing/app/views/subscriptions/show.html.haml b/billing/app/views/subscriptions/show.html.haml index 6f108be..10eb667 100644 --- a/billing/app/views/subscriptions/show.html.haml +++ b/billing/app/views/subscriptions/show.html.haml @@ -3,5 +3,4 @@ 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', show_customer_path(@subscription_customer_id), :class => :btn
\ No newline at end of file += link_to t(:cancel_subscription), subscription_path, :confirm => t(:are_you_sure), :method => :delete, :class => 'btn btn-danger' if @subscription.status == 'Active' # permission check or should that just be on show? |