summaryrefslogtreecommitdiff
path: root/billing/app/views/subscriptions/show.html.haml
blob: 6f108beaca858f1843fb20bac305c50ce6505b9d (plain)
1
2
3
4
5
6
7
%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