2014-02-12 10:23:40 +00:00
|
|
|
extends ../layout
|
|
|
|
|
2018-11-20 10:48:21 +00:00
|
|
|
include ./dashboard/_team_name_mixin
|
|
|
|
|
2019-10-16 10:10:54 +00:00
|
|
|
block head-scripts
|
2019-07-31 15:34:46 +00:00
|
|
|
script(src="https://js.recurly.com/v4/recurly.js")
|
2019-07-31 08:23:13 +00:00
|
|
|
|
2014-02-12 10:23:40 +00:00
|
|
|
block content
|
2015-12-08 15:45:52 +00:00
|
|
|
.content.content-alt(ng-cloak)
|
2018-11-19 15:44:51 +00:00
|
|
|
.container
|
2014-07-07 12:43:36 +00:00
|
|
|
.row
|
2015-12-08 18:23:28 +00:00
|
|
|
.col-md-8.col-md-offset-2
|
2019-02-04 11:10:54 +00:00
|
|
|
-if (fromPlansPage)
|
|
|
|
.alert.alert-warning
|
|
|
|
p You already have a subscription
|
2018-11-19 15:44:51 +00:00
|
|
|
.card
|
2015-12-08 15:45:52 +00:00
|
|
|
.page-header
|
2019-07-31 08:23:13 +00:00
|
|
|
h1 #{translate("your_subscription")}
|
2015-12-08 18:23:28 +00:00
|
|
|
|
2019-02-04 11:10:54 +00:00
|
|
|
-var hasDisplayedSubscription = false
|
2018-11-19 15:44:51 +00:00
|
|
|
-if (personalSubscription)
|
2019-02-04 11:10:54 +00:00
|
|
|
-hasDisplayedSubscription = true
|
2018-11-19 15:44:51 +00:00
|
|
|
include ./dashboard/_personal_subscription
|
2014-03-09 09:56:58 +00:00
|
|
|
|
2018-11-20 10:48:21 +00:00
|
|
|
-if (managedGroupSubscriptions && managedGroupSubscriptions.length > 0)
|
|
|
|
include ./dashboard/_managed_groups
|
|
|
|
|
|
|
|
-if (managedInstitutions && managedInstitutions.length > 0)
|
|
|
|
include ./dashboard/_managed_institutions
|
|
|
|
|
2018-12-18 13:22:44 +00:00
|
|
|
-if (managedPublishers && managedPublishers.length > 0)
|
|
|
|
include ./dashboard/_managed_publishers
|
|
|
|
|
2018-11-20 10:48:21 +00:00
|
|
|
-if (memberGroupSubscriptions && memberGroupSubscriptions.length > 0)
|
2019-02-04 11:10:54 +00:00
|
|
|
-hasDisplayedSubscription = true
|
2018-11-19 15:44:51 +00:00
|
|
|
include ./dashboard/_group_memberships
|
2014-08-27 11:31:01 +00:00
|
|
|
|
2020-02-20 16:07:54 +00:00
|
|
|
-if (confirmedMemberAffiliations && confirmedMemberAffiliations.length > 0)
|
2018-11-20 10:48:21 +00:00
|
|
|
include ./dashboard/_institution_memberships
|
|
|
|
|
2018-11-30 13:03:35 +00:00
|
|
|
-if (v1SubscriptionStatus)
|
|
|
|
include ./dashboard/_v1_subscription_status
|
|
|
|
|
2019-02-11 11:24:46 +00:00
|
|
|
-if (!hasDisplayedSubscription)
|
|
|
|
-if (hasSubscription)
|
|
|
|
-hasDisplayedSubscription = true
|
2019-03-18 10:24:54 +00:00
|
|
|
p(ng-non-bindable) You're on an #{settings.appName} Paid plan. Contact
|
2019-02-11 11:24:46 +00:00
|
|
|
a(href="mailto:support@overleaf.com") support@overleaf.com
|
|
|
|
| to find out more.
|
|
|
|
-else
|
2019-03-18 10:24:54 +00:00
|
|
|
p(ng-non-bindable) You're on the #{settings.appName} Free plan.
|
2019-02-11 11:24:46 +00:00
|
|
|
|
|
2020-02-03 14:11:36 +00:00
|
|
|
a(ng-controller="UpgradeSubscriptionController" href="/user/subscription/plans" ng-click="upgradeSubscription()").btn.btn-primary Upgrade now
|