diff options
author | jessib <jessib@leap.se> | 2013-06-11 12:16:13 -0700 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-07-17 10:47:14 +0200 |
commit | d3e4489cc4833c196eeef77f4fe0680c3f7e7a09 (patch) | |
tree | eb71cac652850e60f9a7669aba8beb856a8459ea /billing/app/views/subscriptions/show.html.haml | |
parent | 888baf7539e131a6201dd6f53a152eeaeb8a0f94 (diff) |
More cleanup of billing code.
Diffstat (limited to 'billing/app/views/subscriptions/show.html.haml')
-rw-r--r-- | billing/app/views/subscriptions/show.html.haml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/billing/app/views/subscriptions/show.html.haml b/billing/app/views/subscriptions/show.html.haml index a3d57f9..6f108be 100644 --- a/billing/app/views/subscriptions/show.html.haml +++ b/billing/app/views/subscriptions/show.html.haml @@ -1,4 +1,7 @@ -%h1 Current Subscription +%h1 + - if @subscription.status == 'Active' + 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 |