diff --git a/static/js/directives/ui/plan-manager.js b/static/js/directives/ui/plan-manager.js
index 72816b134..ad6b73851 100644
--- a/static/js/directives/ui/plan-manager.js
+++ b/static/js/directives/ui/plan-manager.js
@@ -11,6 +11,9 @@ angular.module('quay').directive('planManager', function () {
scope: {
'user': '=user',
'organization': '=organization',
+
+ 'hasSubscription': '=hasSubscription',
+
'readyForPlan': '&readyForPlan',
'planChanged': '&planChanged'
},
@@ -68,6 +71,7 @@ angular.module('quay').directive('planManager', function () {
$scope.planChanging = false;
$scope.planLoading = false;
+ $scope.hasSubscription = subscribedPlan.stripeId != PlanService.getFreePlan();
});
};
diff --git a/static/partials/org-view.html b/static/partials/org-view.html
index 5bca6aabb..3565a94e5 100644
--- a/static/partials/org-view.html
+++ b/static/partials/org-view.html
@@ -110,7 +110,10 @@
diff --git a/static/partials/user-view.html b/static/partials/user-view.html
index 29b4e9d9b..d1ae6ac8a 100644
--- a/static/partials/user-view.html
+++ b/static/partials/user-view.html
@@ -82,7 +82,9 @@
Plan Usage and Billing
-
+
+
+