got better logic and copy for upgrade annual plans, needs i18n next

This commit is contained in:
Henry Oswald 2014-08-29 12:36:36 +01:00
parent 50890af0cf
commit e67d3889f9
2 changed files with 23 additions and 13 deletions

View file

@ -10,17 +10,22 @@ block content
.page-header
h1.text-centered Move to Annual Billing
div(ng-hide="upgradeComplete")
span(ng-show="planName == 'student'")
| Upgarde from Student to Student Annual and save 20% equivilent to $19.2
span(ng-show="planName == 'collaborator'")
| Upgarde from Collaborator to Collaborator Annual and save 20% equivilent to $36
button.btn.btn-success(ng-click="completeAnnualUpgrade()", ng-disabled="inflight")
span(ng-show="inflight") #{translate("processing")}
span(ng-hide="inflight") Move to annual billing now
.row
div.col-md-12
| Change to Annual Billing and save
strong 20%
| equivilent to
strong ${{yearlySaving}}
| per year.
.row  
.row
div.col-md-12
center
button.btn.btn-success(ng-click="completeAnnualUpgrade()", ng-disabled="inflight")
span(ng-show="inflight") #{translate("processing")}
span(ng-hide="inflight") Move to annual billing now
div(ng-show="upgradeComplete")
span Upgrade to annual Complete
h3 Annual billing enabled, #{translate("thank_you")}.

View file

@ -5,8 +5,13 @@ define [
MESSAGES_URL = "/user/subscription/upgrade-annual"
$scope.upgradeComplete = false
$scope.upgradeComplete = true
savings =
student:"19.2"
collaborator:"36"
$scope.$watch $scope.planName, ->
$scope.yearlySaving = savings[$scope.planName]
$scope.completeAnnualUpgrade = ->
body =
planName: $scope.planName