summaryrefslogtreecommitdiff
path: root/engines/billing/app/views/subscriptions/show.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'engines/billing/app/views/subscriptions/show.html.haml')
-rw-r--r--engines/billing/app/views/subscriptions/show.html.haml6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/billing/app/views/subscriptions/show.html.haml b/engines/billing/app/views/subscriptions/show.html.haml
new file mode 100644
index 0000000..2699db9
--- /dev/null
+++ b/engines/billing/app/views/subscriptions/show.html.haml
@@ -0,0 +1,6 @@
+%h1
+ - if @subscription.status == 'Active'
+ Current
+ Subscription
+= render :partial => "subscription_details", :locals => {:subscription => @subscription}
+= link_to t(:cancel_subscription), user_subscription_path(@user, @subscription.id), :confirm => t(:are_you_sure), :method => :delete, :class => 'btn btn-danger' if allow_cancel_subscription(@subscription)