|
|
@@ -1,7 +1,7 @@
|
|
|
//- Buy Buttons
|
|
|
mixin btn_buy_collaborator(location)
|
|
|
a.btn.btn-primary(
|
|
|
- ng-href="/user/subscription/new?planCode={{ getCollaboratorPlanCode() }}¤cy={{currencyCode}}",
|
|
|
+ ng-href="/user/subscription/new?planCode={{ getCollaboratorPlanCode() }}¤cy={{currencyCode}}&itm_campaign=plans&itm_content=" + location,
|
|
|
ng-click="signUpNowClicked('collaborator','" + location + "')"
|
|
|
)
|
|
|
span(ng-show="ui.view != 'annual'") #{translate("start_free_trial")}
|
|
|
@@ -15,7 +15,7 @@ mixin btn_buy_free(location)
|
|
|
span.text-capitalize #{translate('get_started_now')}
|
|
|
mixin btn_buy_professional(location)
|
|
|
a.btn.btn-primary(
|
|
|
- ng-href="/user/subscription/new?planCode=professional{{ ui.view == 'annual' && '-annual' || planQueryString}}¤cy={{currencyCode}}"
|
|
|
+ ng-href="/user/subscription/new?planCode=professional{{ ui.view == 'annual' && '-annual' || planQueryString}}¤cy={{currencyCode}}&itm_campaign=plans&itm_content=" + location,
|
|
|
ng-click="signUpNowClicked('professional','" + location + "')"
|
|
|
)
|
|
|
span(ng-show="ui.view != 'annual'") #{translate("start_free_trial")}
|
|
|
@@ -23,13 +23,13 @@ mixin btn_buy_professional(location)
|
|
|
mixin btn_buy_student(location, plan)
|
|
|
if plan == 'annual'
|
|
|
a.btn.btn-primary(
|
|
|
- ng-href="/user/subscription/new?planCode=student-annual¤cy={{currencyCode}}",
|
|
|
+ ng-href="/user/subscription/new?planCode=student-annual¤cy={{currencyCode}}&itm_campaign=plans&itm_content=" + location,
|
|
|
ng-click="signUpNowClicked('student-annual','" + location + "')"
|
|
|
) #{translate("buy_now")}
|
|
|
else
|
|
|
//- planQueryString will contain _free_trial_7_days
|
|
|
a.btn.btn-primary(
|
|
|
- ng-href="/user/subscription/new?planCode=student{{planQueryString}}¤cy={{currencyCode}}",
|
|
|
+ ng-href="/user/subscription/new?planCode=student{{planQueryString}}¤cy={{currencyCode}}&itm_campaign=plans&itm_content=" + location,
|
|
|
ng-click="signUpNowClicked('student-monthly','" + location + "')"
|
|
|
) #{translate("start_free_trial")}
|
|
|
|