diff --git a/services/web/app/coffee/Features/Subscription/planFeatures.coffee b/services/web/app/coffee/Features/Subscription/planFeatures.coffee index 8c9c276955..db5710341e 100644 --- a/services/web/app/coffee/Features/Subscription/planFeatures.coffee +++ b/services/web/app/coffee/Features/Subscription/planFeatures.coffee @@ -33,7 +33,7 @@ module.exports = student: true } { - feature: 'hundreds_templates' + feature: 'thousands_templates' value: 'bool' info: 'hundreds_templates_info' plans: { diff --git a/services/web/app/views/subscriptions/_modal_group_inquiry.pug b/services/web/app/views/subscriptions/_modal_group_inquiry.pug index 5e54e31b7a..cc9de0d7df 100644 --- a/services/web/app/views/subscriptions/_modal_group_inquiry.pug +++ b/services/web/app/views/subscriptions/_modal_group_inquiry.pug @@ -2,7 +2,7 @@ script(type="text/ng-template", id="groupPlanModalTemplate") .modal-header h3 #{translate("group_plan_enquiry")} .modal-body - form.text-left.form(ng-controller="UniverstiesContactController", ng-submit="contactUs()") + form.text-left.form(ng-controller="GroupPlanContactController", ng-submit="contactUs()") span(ng-show="sent == false && error == false") .form-group label#title9(for='Field9') diff --git a/services/web/public/coffee/main/contact-us.coffee b/services/web/public/coffee/main/contact-us.coffee index 6d3e441c49..70627faba5 100644 --- a/services/web/public/coffee/main/contact-us.coffee +++ b/services/web/public/coffee/main/contact-us.coffee @@ -2,7 +2,7 @@ define [ "base" "libs/platform" ], (App, platform) -> - App.controller 'UniverstiesContactController', ($scope, $modal, $http) -> + App.controller 'GroupPlanContactController', ($scope, $modal, $http) -> $scope.form = {} $scope.sent = false @@ -20,7 +20,7 @@ define [ email: $scope.form.email labels: "#{$scope.form.source} accounts" message: "Please contact me with more details" - subject: "#{$scope.form.name} - General Enquiry - #{$scope.form.position} - #{$scope.form.university}" + subject: "#{$scope.form.name} - Group Enquiry - #{$scope.form.position} - #{$scope.form.university}" inbox: "accounts" request = $http.post "/support", data